Better comments
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 9 Feb 2011 18:25:48 +0000 (18:25 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 9 Feb 2011 18:25:48 +0000 (18:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1069016 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/util/LifecycleBase.java

index bfe725d..bc5f4aa 100644 (file)
@@ -164,13 +164,9 @@ public abstract class LifecycleBase implements Lifecycle {
 
 
     /**
-     * Sub-classes must ensure that:
-     * <ul>
-     * <li>the {@link Lifecycle#START_EVENT} is fired during the execution of
-     *     this method</li>
-     * <li>the state is changed to {@link LifecycleState#STARTING} when the
-     *     {@link Lifecycle#START_EVENT} is fired
-     * </ul>
+     * Sub-classes must ensure that the state is changed to
+     * {@link LifecycleState#STARTING} during the execution of this method.
+     * Changing state will trigger the {@link Lifecycle#START_EVENT} event.
      * 
      * If a component fails to start it may either throw a
      * {@link LifecycleException} which will cause it's parent to fail to start
@@ -243,13 +239,9 @@ public abstract class LifecycleBase implements Lifecycle {
 
 
     /**
-     * Sub-classes must ensure that:
-     * <ul>
-     * <li>the {@link Lifecycle#STOP_EVENT} is fired during the execution of
-     *     this method</li>
-     * <li>the state is changed to {@link LifecycleState#STOPPING} when the
-     *     {@link Lifecycle#STOP_EVENT} is fired
-     * </ul>
+     * Sub-classes must ensure that the state is changed to
+     * {@link LifecycleState#STOPPING} during the execution of this method.
+     * Changing state will trigger the {@link Lifecycle#STOP_EVENT} event.
      * 
      * @throws LifecycleException
      */