summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2011-12-09 10:15:47 +0200
committerHenri Sara <hesara@vaadin.com>2011-12-09 13:31:23 +0200
commit5026e5efabac4f784e2d84e4859148a545ffb576 (patch)
treeca76523256bc59473b18afab48d7e33288fe9da3
parentee4a9921681730d1a92be5cdf9b26739c135daea (diff)
downloadvaadin-framework-5026e5efabac4f784e2d84e4859148a545ffb576.tar.gz
vaadin-framework-5026e5efabac4f784e2d84e4859148a545ffb576.zip
Add some comments in CustomField javadoc.
-rw-r--r--src/com/vaadin/ui/CustomField.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/com/vaadin/ui/CustomField.java b/src/com/vaadin/ui/CustomField.java
index 84c989ed11..ca075a6a6a 100644
--- a/src/com/vaadin/ui/CustomField.java
+++ b/src/com/vaadin/ui/CustomField.java
@@ -24,8 +24,11 @@ import com.vaadin.terminal.gwt.client.ui.VCustomComponent;
* {@link #setInternalValue(Object)} and {@link #getInternalValue()} when
* necessary.
*
- * It is also possible to override {@link #commit()},
- * {@link #setPropertyDataSource(Property)} and other logic of the field.
+ * It is also possible to override {@link #validate()},
+ * {@link #setInternalValue(Object)}, {@link #commit()},
+ * {@link #setPropertyDataSource(Property)}, {@link #isEmpty()} and other logic
+ * of the field. Methods overriding {@link #setInternalValue(Object)} should
+ * also call the corresponding superclass method.
*
* @since 7.0
*/