Author: knopp
Date: Tue Sep 11 12:28:12 2007
New Revision: 574672
URL: http://svn.apache.org/viewvc?rev=574672&view=rev
Log:
reformat
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java?rev=574672&r1=574671&r2=574672&view=diff
==============================================================================
---
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java
(original)
+++
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java
Tue Sep 11 12:28:12 2007
@@ -32,11 +32,10 @@
public abstract class AbstractTextComponent extends FormComponent
{
/**
- * Text components that implement this interface are know to be able to
- * provide a pattern for formatting output and parsing input. This can
be
- * used by for instance date picker components which are based on
Javascript
- * and need some knowledge as to how to communicate properly via request
- * parameters.
+ * Text components that implement this interface are know to be able to
provide a pattern for
+ * formatting output and parsing input. This can be used by for
instance date picker components
+ * which are based on Javascript and need some knowledge as to how to
communicate properly via
+ * request parameters.
*/
public static interface ITextFormatProvider
{
@@ -69,11 +68,10 @@
}
/**
- * Should the bound object become <code>null</code> when the input is
- * empty?
+ * Should the bound object become <code>null</code> when the input is
empty?
*
- * @return <code>true</code> when the value will be set to
- * <code>null</code> when the input is empty.
+ * @return <code>true</code> when the value will be set to
<code>null</code> when the input
+ * is empty.
*/
public final boolean getConvertEmptyInputStringToNull()
{
@@ -81,9 +79,8 @@
}
/**
- * TextFields return an empty string even if the user didn't type
anything
- * in them. To be able to work nicely with validation, this method
returns
- * false.
+ * TextFields return an empty string even if the user didn't type
anything in them. To be able
+ * to work nicely with validation, this method returns false.
*
* @see
org.apache.wicket.markup.html.form.FormComponent#isInputNullable()
*/
@@ -126,8 +123,7 @@
}
/**
- * Should the bound object become <code>null</code> when the input is
- * empty?
+ * Should the bound object become <code>null</code> when the input is
empty?
*
* @param flag
* the value to set this flag.