You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by gs...@apache.org on 2007/10/16 00:46:23 UTC

svn commit: r584952 [5/5] - in /wicket/trunk/jdk-1.4/wicket-extensions: .settings/ src/main/java/org/apache/wicket/extensions/ajax/markup/html/ src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/ src/main/java/org/apache/wicket/ex...

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java Mon Oct 15 15:46:09 2007
@@ -20,12 +20,11 @@
 import org.apache.wicket.model.ResourceModel;
 
 /**
- * Base class for buttons that work with {@link IWizard the wizard component}.
- * It uses resource bundles to display the button label.
+ * Base class for buttons that work with {@link IWizard the wizard component}. It uses resource
+ * bundles to display the button label.
  * <p>
- * When wizard buttons are presses (and they pass validation if that is
- * relevant), they pass control to {@link #onClick() their action method},
- * which should do the real work.
+ * When wizard buttons are presses (and they pass validation if that is relevant), they pass control
+ * to {@link #onClick() their action method}, which should do the real work.
  * </p>
  * 
  * @author Eelco Hillenius

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java Mon Oct 15 15:46:09 2007
@@ -21,15 +21,13 @@
 import org.apache.wicket.markup.html.panel.Panel;
 
 /**
- * The default bar of button components for wizards. This should be good for 90%
- * of the cases. If not, override {@link Wizard#newButtonBar(String)} and
- * provide your own.
+ * The default bar of button components for wizards. This should be good for 90% of the cases. If
+ * not, override {@link Wizard#newButtonBar(String)} and provide your own.
  * <p>
- * The button bar holds the {@link PreviousButton previous}, [@link NextButton
- * next}, {@link LastButton last}, [@link CancelButton cancel} and
- * {@link FinishButton finish} buttons. The {@link LastButton last button} is
- * off by default. You can turn it on by having the wizard model return true for
- * {@link IWizardModel#isLastVisible() the is last visble method}.
+ * The button bar holds the {@link PreviousButton previous}, [@link NextButton next},
+ * {@link LastButton last}, [@link CancelButton cancel} and {@link FinishButton finish} buttons.
+ * The {@link LastButton last button} is off by default. You can turn it on by having the wizard
+ * model return true for {@link IWizardModel#isLastVisible() the is last visble method}.
  * </p>
  * 
  * @author Eelco Hillenius

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java Mon Oct 15 15:46:09 2007
@@ -25,11 +25,10 @@
 
 
 /**
- * Default implementation of {@link IWizardModel}, which models a semi-static
- * wizard. This means that all steps should be known upfront, and added to the
- * model on construction. Steps can be optional by using {@link ICondition}.
- * The wizard is initialized with a wizard model through calling method
- * {@link Wizard#init(IWizardModel)}.
+ * Default implementation of {@link IWizardModel}, which models a semi-static wizard. This means
+ * that all steps should be known upfront, and added to the model on construction. Steps can be
+ * optional by using {@link ICondition}. The wizard is initialized with a wizard model through
+ * calling method {@link Wizard#init(IWizardModel)}.
  * <p>
  * Steps can be added to this model directly using either the
  * {@link #add(IWizardStep) normal add method} or
@@ -37,8 +36,8 @@
  * </p>
  * 
  * <p>
- * <a href="https://wizard-framework.dev.java.net/">Swing Wizard Framework</a>
- * served as a valuable source of inspiration.
+ * <a href="https://wizard-framework.dev.java.net/">Swing Wizard Framework</a> served as a valuable
+ * source of inspiration.
  * </p>
  * 
  * @author Eelco Hillenius
@@ -51,11 +50,10 @@
 	public interface ICondition extends IClusterable
 	{
 		/**
-		 * Evaluates the current state and returns whether the step that is
-		 * coupled to this condition is available.
+		 * Evaluates the current state and returns whether the step that is coupled to this
+		 * condition is available.
 		 * 
-		 * @return True if the step this condition is coupled to is available,
-		 *         false otherwise
+		 * @return True if the step this condition is coupled to is available, false otherwise
 		 */
 		public boolean evaluate();
 	}
@@ -100,8 +98,8 @@
 	}
 
 	/**
-	 * Adds the next step to the wizard. If the {@link WizardStep} implements
-	 * {@link ICondition}, then this method is equivalent to calling
+	 * Adds the next step to the wizard. If the {@link WizardStep} implements {@link ICondition},
+	 * then this method is equivalent to calling
 	 * {@link #add(IWizardStep, ICondition) add(step, (ICondition)step)}.
 	 * 
 	 * @param step
@@ -116,14 +114,13 @@
 	}
 
 	/**
-	 * Adds an optional step to the model. The step will only be displayed if
-	 * the specified condition is met.
+	 * Adds an optional step to the model. The step will only be displayed if the specified
+	 * condition is met.
 	 * 
 	 * @param step
 	 *            The step to add
 	 * @param condition
-	 *            the {@link ICondition} under which it should be included in
-	 *            the wizard.
+	 *            the {@link ICondition} under which it should be included in the wizard.
 	 */
 	public void add(IWizardStep step, ICondition condition)
 	{
@@ -144,8 +141,7 @@
 	/**
 	 * Checks if the last button should be enabled.
 	 * 
-	 * @return <tt>true</tt> if the last button should be enabled,
-	 *         <tt>false</tt> otherwise.
+	 * @return <tt>true</tt> if the last button should be enabled, <tt>false</tt> otherwise.
 	 * @see IWizardModel#isLastVisible
 	 */
 	public boolean isLastAvailable()
@@ -164,8 +160,7 @@
 	/**
 	 * Checks if the next button should be enabled.
 	 * 
-	 * @return <tt>true</tt> if the next button should be enabled,
-	 *         <tt>false</tt> otherwise.
+	 * @return <tt>true</tt> if the next button should be enabled, <tt>false</tt> otherwise.
 	 */
 	public boolean isNextAvailable()
 	{
@@ -175,8 +170,7 @@
 	/**
 	 * Checks if the previous button should be enabled.
 	 * 
-	 * @return <tt>true</tt> if the previous button should be enabled,
-	 *         <tt>false</tt> otherwise.
+	 * @return <tt>true</tt> if the previous button should be enabled, <tt>false</tt> otherwise.
 	 */
 	public boolean isPreviousAvailable()
 	{
@@ -250,11 +244,11 @@
 
 	/**
 	 * Returns true if all the steps in the wizard return <tt>true</tt> from
-	 * {@link IWizardStep#isComplete}. This is primarily used to determine if
-	 * the last button can be enabled.
+	 * {@link IWizardStep#isComplete}. This is primarily used to determine if the last button can
+	 * be enabled.
 	 * 
-	 * @return <tt>true</tt> if all the steps in the wizard are complete,
-	 *         <tt>false</tt> otherwise.
+	 * @return <tt>true</tt> if all the steps in the wizard are complete, <tt>false</tt>
+	 *         otherwise.
 	 */
 	protected final boolean allStepsComplete()
 	{

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java Mon Oct 15 15:46:09 2007
@@ -36,8 +36,8 @@
 
 
 /**
- * default implementation of {@link IWizardStep}. It is also a panel, which is
- * used as the view component.
+ * default implementation of {@link IWizardStep}. It is also a panel, which is used as the view
+ * component.
  * 
  * <p>
  * And example of a custom step with a panel follows.
@@ -81,8 +81,8 @@
 public class WizardStep extends Panel implements IWizardStep
 {
 	/**
-	 * Adds form validators. We don't need this in 2.0 as the hierarchy is know
-	 * at construction time from then.
+	 * Adds form validators. We don't need this in 2.0 as the hierarchy is know at construction time
+	 * from then.
 	 */
 	private final class AddFormValidatorAction
 	{
@@ -99,8 +99,8 @@
 	}
 
 	/**
-	 * Wraps form validators for this step such that they are only executed when
-	 * this step is active.
+	 * Wraps form validators for this step such that they are only executed when this step is
+	 * active.
 	 */
 	private final class FormValidatorWrapper implements IFormValidator
 	{
@@ -213,11 +213,10 @@
 	private static final long serialVersionUID = 1L;
 
 	/**
-	 * Marks this step as being fully configured. Only when this is
-	 * <tt>true</tt> can the wizard progress. True by default as that works
-	 * best with normal forms. Clients can set this to false if some
-	 * intermediate step, like a file upload, needs to be completed before the
-	 * wizard may progress.
+	 * Marks this step as being fully configured. Only when this is <tt>true</tt> can the wizard
+	 * progress. True by default as that works best with normal forms. Clients can set this to false
+	 * if some intermediate step, like a file upload, needs to be completed before the wizard may
+	 * progress.
 	 */
 	private boolean complete = true;
 
@@ -239,8 +238,8 @@
 	private IWizardModel wizardModel;
 
 	/**
-	 * Construct without a title and a summary. Useful for when you provide a
-	 * custom header by overiding {@link #getHeader(String, Component, IWizard)}.
+	 * Construct without a title and a summary. Useful for when you provide a custom header by
+	 * overiding {@link #getHeader(String, Component, IWizard)}.
 	 */
 	public WizardStep()
 	{
@@ -248,9 +247,8 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param title
 	 *            the title of this step.
@@ -263,9 +261,8 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param title
 	 *            the title of this step.
@@ -283,9 +280,8 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param title
 	 *            the title of this step.
@@ -298,9 +294,8 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param title
 	 *            the title of this step.
@@ -337,8 +332,7 @@
 
 	/**
 	 * @see org.apache.wicket.extensions.wizard.IWizardStep#getHeader(java.lang.String,
-	 *      org.apache.wicket.Component,
-	 *      org.apache.wicket.extensions.wizard.IWizard)
+	 *      org.apache.wicket.Component, org.apache.wicket.extensions.wizard.IWizard)
 	 */
 	public Component getHeader(String id, Component parent, IWizard wizard)
 	{
@@ -346,9 +340,9 @@
 	}
 
 	/**
-	 * Gets the summary of this step. This will be displayed in the title of the
-	 * wizard while this step is active. The summary is typically an overview of
-	 * the step or some usage guidelines for the user.
+	 * Gets the summary of this step. This will be displayed in the title of the wizard while this
+	 * step is active. The summary is typically an overview of the step or some usage guidelines for
+	 * the user.
 	 * 
 	 * @return the summary of this step.
 	 */
@@ -369,8 +363,7 @@
 
 	/**
 	 * @see org.apache.wicket.extensions.wizard.IWizardStep#getView(java.lang.String,
-	 *      org.apache.wicket.Component,
-	 *      org.apache.wicket.extensions.wizard.IWizard)
+	 *      org.apache.wicket.Component, org.apache.wicket.extensions.wizard.IWizard)
 	 */
 	public Component getView(String id, Component parent, IWizard wizard)
 	{
@@ -378,15 +371,15 @@
 	}
 
 	/**
-	 * Called to initialize the step. When this method is called depends on the
-	 * kind of wizard model that is used.
+	 * Called to initialize the step. When this method is called depends on the kind of wizard model
+	 * that is used.
 	 * 
-	 * The {@link WizardModel static wizard model} knows all the steps upfront
-	 * and initializes themm when starting up. This method will be called when
-	 * the wizard is {@link #init(IWizardModel) initializing}.
+	 * The {@link WizardModel static wizard model} knows all the steps upfront and initializes themm
+	 * when starting up. This method will be called when the wizard is
+	 * {@link #init(IWizardModel) initializing}.
 	 * 
-	 * The {@link DynamicWizardModel dynamic wizard model} initializes steps
-	 * every time they are encountered.
+	 * The {@link DynamicWizardModel dynamic wizard model} initializes steps every time they are
+	 * encountered.
 	 * 
 	 * This method sets the wizard model and then calls template method
 	 * {@link #onInit(IWizardModel)}
@@ -401,12 +394,11 @@
 	}
 
 	/**
-	 * Checks if this step is compete. This method should return true if the
-	 * wizard can proceed to the next step. This property is bound and changes
-	 * can be made at anytime by calling {@link #setComplete(boolean)} .
+	 * Checks if this step is compete. This method should return true if the wizard can proceed to
+	 * the next step. This property is bound and changes can be made at anytime by calling
+	 * {@link #setComplete(boolean)} .
 	 * 
-	 * @return <tt>true</tt> if the wizard can proceed from this step,
-	 *         <tt>false</tt> otherwise.
+	 * @return <tt>true</tt> if the wizard can proceed from this step, <tt>false</tt> otherwise.
 	 * @see #setComplete
 	 */
 	public boolean isComplete()
@@ -415,12 +407,11 @@
 	}
 
 	/**
-	 * Marks this step as compete. The wizard will not be able to proceed from
-	 * this step until this property is configured to <tt>true</tt>.
+	 * Marks this step as compete. The wizard will not be able to proceed from this step until this
+	 * property is configured to <tt>true</tt>.
 	 * 
 	 * @param complete
-	 *            <tt>true</tt> to allow the wizard to proceed, <tt>false</tt>
-	 *            otherwise.
+	 *            <tt>true</tt> to allow the wizard to proceed, <tt>false</tt> otherwise.
 	 * @see #isComplete
 	 */
 	public void setComplete(boolean complete)

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardModel.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardModel.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardModel.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardModel.java Mon Oct 15 15:46:09 2007
@@ -23,10 +23,9 @@
 import org.apache.wicket.extensions.wizard.WizardModel;
 
 /**
- * Wizard model that is specialized on dynamic wizards. Unlike the default,
- * static {@link WizardModel wizard model}, this model isn't very intelligent,
- * but rather delegates much of the work and knowledge to the
- * {@link IDynamicWizardStep dynamic wizard steps} it uses.
+ * Wizard model that is specialized on dynamic wizards. Unlike the default, static
+ * {@link WizardModel wizard model}, this model isn't very intelligent, but rather delegates much
+ * of the work and knowledge to the {@link IDynamicWizardStep dynamic wizard steps} it uses.
  * 
  * @author eelcohillenius
  */
@@ -66,9 +65,8 @@
 	}
 
 	/**
-	 * @return the step this wizard was constructed with (starts the wizard).
-	 *         Will be used for resetting the wizard, unless you override
-	 *         {@link #reset()}.
+	 * @return the step this wizard was constructed with (starts the wizard). Will be used for
+	 *         resetting the wizard, unless you override {@link #reset()}.
 	 */
 	public final IDynamicWizardStep getStartStep()
 	{

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardStep.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardStep.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardStep.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/DynamicWizardStep.java Mon Oct 15 15:46:09 2007
@@ -35,12 +35,11 @@
 	private final IDynamicWizardStep previousStep;
 
 	/**
-	 * Construct without a title and a summary. Useful for when you provide a
-	 * custom header by overiding {@link #getHeader(String, Component, IWizard)}.
+	 * Construct without a title and a summary. Useful for when you provide a custom header by
+	 * overiding {@link #getHeader(String, Component, IWizard)}.
 	 * 
 	 * @param previousStep
-	 *            The previous step. May be null if this is the first step in
-	 *            the wizard
+	 *            The previous step. May be null if this is the first step in the wizard
 	 */
 	public DynamicWizardStep(IDynamicWizardStep previousStep)
 	{
@@ -49,13 +48,11 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param previousStep
-	 *            The previous step. May be null if this is the first step in
-	 *            the wizard
+	 *            The previous step. May be null if this is the first step in the wizard
 	 * @param title
 	 *            the title of this step.
 	 * @param summary
@@ -68,13 +65,11 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param previousStep
-	 *            The previous step. May be null if this is the first step in
-	 *            the wizard
+	 *            The previous step. May be null if this is the first step in the wizard
 	 * @param title
 	 *            the title of this step.
 	 * @param summary
@@ -90,13 +85,11 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param previousStep
-	 *            The previous step. May be null if this is the first step in
-	 *            the wizard
+	 *            The previous step. May be null if this is the first step in the wizard
 	 * @param title
 	 *            the title of this step.
 	 * @param summary
@@ -109,13 +102,11 @@
 	}
 
 	/**
-	 * Creates a new step with the specified title and summary. The title and
-	 * summary are displayed in the wizard title block while this step is
-	 * active.
+	 * Creates a new step with the specified title and summary. The title and summary are displayed
+	 * in the wizard title block while this step is active.
 	 * 
 	 * @param previousStep
-	 *            The previous step. May be null if this is the first step in
-	 *            the wizard
+	 *            The previous step. May be null if this is the first step in the wizard
 	 * @param title
 	 *            the title of this step.
 	 * @param summary

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/dynamic/IDynamicWizardStep.java Mon Oct 15 15:46:09 2007
@@ -20,12 +20,10 @@
 import org.apache.wicket.extensions.wizard.IWizardStep;
 
 /**
- * Wizard step that is intelligent enough to know how to navigate to the next
- * and previous steps. Using such steps, you can build wizard that consists of
- * steps that are linked on the fly rather than in a static, pre-determined
- * fashion. The basic idea here is that the wizard step takes over much of what
- * otherwise would be done by the wizard model. You trade simplicity for
- * flexibility.
+ * Wizard step that is intelligent enough to know how to navigate to the next and previous steps.
+ * Using such steps, you can build wizard that consists of steps that are linked on the fly rather
+ * than in a static, pre-determined fashion. The basic idea here is that the wizard step takes over
+ * much of what otherwise would be done by the wizard model. You trade simplicity for flexibility.
  * 
  * <p>
  * Warning: only use these steps with the {@link DynamicWizardModel}.
@@ -38,8 +36,7 @@
 	/**
 	 * Checks if the last button should be enabled.
 	 * 
-	 * @return <tt>true</tt> if the last button should be enabled,
-	 *         <tt>false</tt> otherwise.
+	 * @return <tt>true</tt> if the last button should be enabled, <tt>false</tt> otherwise.
 	 * @see IWizardModel#isLastVisible
 	 */
 	boolean isLastAvailable();
@@ -80,11 +77,11 @@
 	IDynamicWizardStep last();
 
 	/**
-	 * Gets the next wizard step from here. Can only be called when
-	 * {@link #isNextAvailable()} returns true.
+	 * 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 unless this is the last
-	 *         step ({@link #isLastStep()} returns true).
+	 * @return The next wizard step. May not be null unless this is the last step ({@link #isLastStep()}
+	 *         returns true).
 	 */
 	IDynamicWizardStep next();
 
@@ -92,8 +89,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 unless this is the first
-	 *         step (in which case it should never be called).
+	 * @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();
 }

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java Mon Oct 15 15:46:09 2007
@@ -18,8 +18,6 @@
 
 import java.util.regex.Matcher;
 
-import org.apache.wicket.extensions.validation.validator.RfcCompliantEmailAddressValidator;
-
 import junit.framework.TestCase;
 
 /**

Modified: wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java?rev=584952&r1=584951&r2=584952&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java (original)
+++ wicket/trunk/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java Mon Oct 15 15:46:09 2007
@@ -16,12 +16,10 @@
  */
 package org.apache.wicket.util.license;
 
-import org.apache.wicket.util.license.ApacheLicenseHeaderTestCase;
 
 /**
- * Test that the license headers are in place in this project. The tests are run
- * from {@link ApacheLicenseHeaderTestCase}, but you can add project specific
- * tests here if needed.
+ * Test that the license headers are in place in this project. The tests are run from
+ * {@link ApacheLicenseHeaderTestCase}, but you can add project specific tests here if needed.
  * 
  * @author Frank Bille Jensen (frankbille)
  */
@@ -32,6 +30,6 @@
 	 */
 	public ApacheLicenceHeaderTest()
 	{
-//		addHeaders = true;
+		// addHeaders = true;
 	}
 }