Author: ehillenius
Date: Fri Jun 15 01:36:30 2007
New Revision: 547578

URL: http://svn.apache.org/viewvc?view=rev&rev=547578
Log:
javadoc fix

Modified:
    
incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java

Modified: 
incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java?view=diff&rev=547578&r1=547577&r2=547578
==============================================================================
--- 
incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java
 (original)
+++ 
incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java
 Fri Jun 15 01:36:30 2007
@@ -83,7 +83,8 @@
         * Gets the next wizard step from here. Can only be called when
         * [EMAIL PROTECTED] #isNextAvailable()} returns true.
         * 
-        * @return The next wizard step. May not be null.
+        * @return The next wizard step. May not be null unless this is the last
+        *         step ([EMAIL PROTECTED] #isLastStep()} returns true).
         */
        IDynamicWizardStep next();
 
@@ -91,7 +92,8 @@
         * Gets the previous wizard step from here. Can only be called when
         * [EMAIL PROTECTED] #isPreviousAvailable()} returns true.
         * 
-        * @return The next wizard step. May not be null.
+        * @return The next wizard step. May not be null unless this is the 
first
+        *         step (in which case it should never be called).
         */
        IDynamicWizardStep previous();
 }


Reply via email to