You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jc...@apache.org on 2006/11/04 13:14:38 UTC

svn commit: r471175 - /incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/validation/IValidator.java

Author: jcompagner
Date: Sat Nov  4 04:14:37 2006
New Revision: 471175

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

Modified:
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/validation/IValidator.java

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/validation/IValidator.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/validation/IValidator.java?view=diff&rev=471175&r1=471174&r2=471175
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/validation/IValidator.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/validation/IValidator.java Sat Nov  4 04:14:37 2006
@@ -26,7 +26,8 @@
  * <p>
  * Instead of subclassing IValidator, you should use one of the existing
  * validators, which cover a huge number of cases, or if none satisfies your
- * need, subclass CustomValidator.
+ * need, subclass one of the Type validators like {@link StringValidator},
+ * {@link NumberValidator} or {@link DateValidator}
  * <p>
  * Interface to code that validates Form components. When the validate() method
  * of the interface is called by the framework, the IValidator implementation is
@@ -37,11 +38,11 @@
 public interface IValidator extends Serializable
 {
 	/**
-	 * THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT IMPLEMENT IT.
 	 * <p>
 	 * Instead of subclassing IValidator, you should use one of the existing
 	 * validators, which cover a huge number of cases, or if none satisfies your
-	 * need, subclass CustomValidator.
+	 * need, subclass one of the Type validators like {@link StringValidator},
+	 * {@link NumberValidator} or {@link DateValidator}
 	 * <p>
 	 * Validates the given input. The input corresponds to the input from the
 	 * request for a component.