aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2011-11-07 11:25:15 +0200
committerHenri Sara <hesara@vaadin.com>2011-11-07 11:25:15 +0200
commitb7dc0286b82ee10fb7ac991d88040afe157f74a4 (patch)
treefdf672ca4106ff50130ab41bd4c7ea9cd16c56ca /src/com/vaadin/ui
parent6c78fecb9f28eb5f0f09c906199dbc4c6c55d50d (diff)
downloadvaadin-framework-b7dc0286b82ee10fb7ac991d88040afe157f74a4.tar.gz
vaadin-framework-b7dc0286b82ee10fb7ac991d88040afe157f74a4.zip
Remove Field.getCaption(), getDescription() and setDescription().
Obsolete methods removed. When needed, these methods are in AbstractComponent and can be accessed by casting the Field. Migration needed: occasional cast of Field to AbstractComponent.
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r--src/com/vaadin/ui/Field.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/com/vaadin/ui/Field.java b/src/com/vaadin/ui/Field.java
index 72dc3130c3..1f9bea311f 100644
--- a/src/com/vaadin/ui/Field.java
+++ b/src/com/vaadin/ui/Field.java
@@ -10,29 +10,12 @@ import com.vaadin.ui.Component.Focusable;
/**
* @author IT Mill Ltd.
- *
*/
public interface Field extends Component, BufferedValidatable, Property,
Property.ValueChangeNotifier, Property.ValueChangeListener,
Property.Editor, Focusable {
/**
- * Sets the Caption.
- *
- * @param caption
- */
- void setCaption(String caption);
-
- String getDescription();
-
- /**
- * Sets the Description.
- *
- * @param caption
- */
- void setDescription(String caption);
-
- /**
* Is this field required.
*
* Required fields must filled by the user.