diff options
Diffstat (limited to 'src/com/vaadin/ui/Field.java')
-rw-r--r-- | src/com/vaadin/ui/Field.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/Field.java b/src/com/vaadin/ui/Field.java index 1f9bea311f..5cc81a9e92 100644 --- a/src/com/vaadin/ui/Field.java +++ b/src/com/vaadin/ui/Field.java @@ -9,9 +9,15 @@ import com.vaadin.data.Property; import com.vaadin.ui.Component.Focusable; /** + * TODO document + * + * @param T + * the type of values in the field, which might not be the same type + * as that of the data source if converters are used + * * @author IT Mill Ltd. */ -public interface Field extends Component, BufferedValidatable, Property, +public interface Field<T> extends Component, BufferedValidatable, Property<T>, Property.ValueChangeNotifier, Property.ValueChangeListener, Property.Editor, Focusable { |