Class ValueBoxEditor<T>
java.lang.Object
com.google.gwt.editor.client.adapters.TakesValueEditor<T>
com.google.gwt.editor.ui.client.adapters.ValueBoxEditor<T>
- Type Parameters:
T- the type of value to be edited
- All Implemented Interfaces:
Editor<T>,HasEditorDelegate<T>,LeafValueEditor<T>,TakesValue<T>
Adapts the
ValueBoxBase interface to the Editor framework. This
adapter uses ValueBoxBase.getValueOrThrow() to report parse errors to
the Editor framework.-
Nested Class Summary
Nested classes/interfaces inherited from interface com.google.gwt.editor.client.Editor
Editor.Ignore, Editor.Path -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedValueBoxEditor(ValueBoxBase<T> peer) Constructs a new ValueBoxEditor that adapts aValueBoxBasepeer instance. -
Method Summary
Modifier and TypeMethodDescriptionReturns theEditorDelegatefor this instance.getValue()static <T> ValueBoxEditor<T>of(ValueBoxBase<T> valueBox) Returns a new TakesValueEditor that adapts aValueBoxBaseinstance.voidsetDelegate(EditorDelegate<T> delegate) Sets theEditorDelegatefor this instance.voidSets the value.Methods inherited from class com.google.gwt.editor.client.adapters.TakesValueEditor
of
-
Constructor Details
-
ValueBoxEditor
Constructs a new ValueBoxEditor that adapts aValueBoxBasepeer instance.- Parameters:
peer- aValueBoxBaseinstance of type T
-
-
Method Details
-
of
Returns a new TakesValueEditor that adapts aValueBoxBaseinstance.- Parameters:
valueBox- aValueBoxBaseinstance to adapt- Returns:
- a ValueBoxEditor instance of the same type as the
adapted
ValueBoxBaseinstance
-
getDelegate
Returns theEditorDelegatefor this instance.- Returns:
- an
EditorDelegate, ornull - See Also:
-
getValue
CallsValueBoxBase.getValueOrThrow(). If aParseExceptionis thrown, it will be available throughEditorError.getUserData().- Specified by:
getValuein interfaceTakesValue<T>- Overrides:
getValuein classTakesValueEditor<T>- Returns:
- a value of type T
- See Also:
-
setDelegate
Sets theEditorDelegatefor this instance. This method is only called by the driver.- Specified by:
setDelegatein interfaceHasEditorDelegate<T>- Parameters:
delegate- anEditorDelegate, ornull- See Also:
-
setValue
Description copied from interface:TakesValueSets the value.- Specified by:
setValuein interfaceTakesValue<T>- Overrides:
setValuein classTakesValueEditor<T>- Parameters:
value- a value object of type V- See Also:
-