Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2011-03-01 15:12:09 +0000
committerSimone Bordet2011-03-01 15:12:09 +0000
commit9e4ad23c3690d568a78967f61bd3478233eb0894 (patch)
treed565c8faa52f498843a2267eb24559f1d40d9233
parent0a0deacb624829345d3b9889a7481f73388dbecd (diff)
downloadorg.eclipse.jetty.project-9e4ad23c3690d568a78967f61bd3478233eb0894.tar.gz
org.eclipse.jetty.project-9e4ad23c3690d568a78967f61bd3478233eb0894.tar.xz
org.eclipse.jetty.project-9e4ad23c3690d568a78967f61bd3478233eb0894.zip
Javadocs.
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2835 7e9141cc-0065-0410-87d8-b60c137991c4
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java b/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java
index 655844f0ba..2a541ac4d5 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java
@@ -3,11 +3,10 @@ package org.eclipse.jetty.util.component;
/**
- * A Destroyable is an object which can be detroyed.
- * <p>
- * Typically a Destroyable is a {@link LifeCycle} component that can hold onto
- * resources over multiple start/stop cycles. A call to destroy will release all
- * resources and will prevent any further start/stop cycles from being successful.
+ * <p>A Destroyable is an object which can be destroyed.</p>
+ * <p>Typically a Destroyable is a {@link LifeCycle} component that can hold onto
+ * resources over multiple start/stop cycles. A call to destroy will release all
+ * resources and will prevent any further start/stop cycles from being successful.</p>
*/
public interface Destroyable
{

Back to the top