aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/AbstractField.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/itmill/toolkit/ui/AbstractField.java')
-rw-r--r--src/com/itmill/toolkit/ui/AbstractField.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/com/itmill/toolkit/ui/AbstractField.java b/src/com/itmill/toolkit/ui/AbstractField.java
index 1cf7b69ac4..877920273d 100644
--- a/src/com/itmill/toolkit/ui/AbstractField.java
+++ b/src/com/itmill/toolkit/ui/AbstractField.java
@@ -405,18 +405,19 @@ public abstract class AbstractField extends AbstractComponent implements Field,
Property.ConversionException {
setValue(newValue, false);
}
-
+
/**
* Sets the value of the field.
*
* @param newValue
* the New value of the field.
- * @param repaintIsNotNeeded True iff caller is sure that repaint is not needed.
+ * @param repaintIsNotNeeded
+ * True iff caller is sure that repaint is not needed.
* @throws Property.ReadOnlyException
* @throws Property.ConversionException
*/
- protected void setValue(Object newValue, boolean repaintIsNotNeeded) throws Property.ReadOnlyException,
- Property.ConversionException {
+ protected void setValue(Object newValue, boolean repaintIsNotNeeded)
+ throws Property.ReadOnlyException, Property.ConversionException {
if ((newValue == null && value != null)
|| (newValue != null && !newValue.equals(value))) {