You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2011/01/24 12:28:40 UTC

svn commit: r1062735 - /click/trunk/click/examples/src/org/apache/click/examples/page/wizard/WizardPage.java

Author: sabob
Date: Mon Jan 24 11:28:40 2011
New Revision: 1062735

URL: http://svn.apache.org/viewvc?rev=1062735&view=rev
Log:
checkstyle

Modified:
    click/trunk/click/examples/src/org/apache/click/examples/page/wizard/WizardPage.java

Modified: click/trunk/click/examples/src/org/apache/click/examples/page/wizard/WizardPage.java
URL: http://svn.apache.org/viewvc/click/trunk/click/examples/src/org/apache/click/examples/page/wizard/WizardPage.java?rev=1062735&r1=1062734&r2=1062735&view=diff
==============================================================================
--- click/trunk/click/examples/src/org/apache/click/examples/page/wizard/WizardPage.java (original)
+++ click/trunk/click/examples/src/org/apache/click/examples/page/wizard/WizardPage.java Mon Jan 24 11:28:40 2011
@@ -85,7 +85,7 @@ public class WizardPage extends BorderPa
     /**
      * Sets the current Step to the specified Step.
      *
-     * @param step the new step to set
+     * @param stepIndex the current step index to set
      */
     public void setCurrentStepIndex(int stepIndex) {
         // Store step index for subsequent requests
@@ -116,7 +116,6 @@ public class WizardPage extends BorderPa
     /**
      * Return true if there is another step before the specified step.
      *
-     * @param step the step to check against
      * @return true if there is another step before the specified step
      */
     public boolean hasPreviousStep() {
@@ -126,7 +125,6 @@ public class WizardPage extends BorderPa
     /**
      * Return true if there is another step after the specified step.
      *
-     * @param step the step to check against
      * @return true if there is another step after the specified step
      */
     public boolean hasNextStep() {
@@ -136,7 +134,6 @@ public class WizardPage extends BorderPa
     /**
      * Return true if the specified step is the last step in the process.
      *
-     * @param step the step to check against
      * @return true if the specified step is the last step in the process
      */
     public boolean isLastStep() {