You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2007/06/15 10:36:31 UTC

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

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
 	 * {@link #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 ({@link #isLastStep()} returns true).
 	 */
 	IDynamicWizardStep next();
 
@@ -91,7 +92,8 @@
 	 * Gets the previous wizard step from here. Can only be called when
 	 * {@link #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();
 }