bruno 2004/04/30 05:22:40
Modified: src/blocks/forms/java/org/apache/cocoon/forms/formmodel
Widget.java
Log:
javadoc fix
Revision Changes Path
1.11 +3 -3
cocoon-2.1/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/Widget.java
Index: Widget.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/Widget.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Widget.java 28 Apr 2004 16:34:12 -0000 1.10
+++ Widget.java 30 Apr 2004 12:22:40 -0000 1.11
@@ -33,12 +33,12 @@
* <li>can hold a value (which can be any kind of object). See [EMAIL
PROTECTED] #getValue()}.</li>
* <li>can read its value from a request object (and convert it from a
string to its native type).
* See [EMAIL PROTECTED] #readFromRequest(FormContext)}.</li>
- * <li>can validate itself. See [EMAIL PROTECTED]
#validate(FormContext)}.</li>
+ * <li>can validate itself. See [EMAIL PROTECTED] #validate()}.</li>
* <li>can generate an XML representation of itself.</li>
* </ul>
*
* <p>When a request is submitted, first the [EMAIL PROTECTED]
#readFromRequest(FormContext)} method of all widgets
- * will be called so that they can read their value(s). Next, the [EMAIL
PROTECTED] #validate(FormContext)} method will
+ * will be called so that they can read their value(s). Next, the [EMAIL
PROTECTED] #validate()} method will
* be called. Doing this in two steps allows the validation to compare
values between widgets.
* See also the method [EMAIL PROTECTED] Form#process(FormContext)}.</p>
*