Class FakeLeafValueEditor<T>
- java.lang.Object
-
- com.google.gwt.editor.client.testing.FakeLeafValueEditor<T>
-
- Type Parameters:
T- the type not being edited
- All Implemented Interfaces:
Editor<T>,LeafValueEditor<T>,TakesValue<T>
public class FakeLeafValueEditor<T> extends java.lang.Object implements LeafValueEditor<T>
A no-op Editor.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.gwt.editor.client.Editor
Editor.Ignore, Editor.Path
-
-
Constructor Summary
Constructors Constructor Description FakeLeafValueEditor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TgetValue()Returns the current value.voidsetValue(T value)Sets the value.
-
-
-
Method Detail
-
getValue
public T getValue()
Description copied from interface:TakesValueReturns the current value.- Specified by:
getValuein interfaceTakesValue<T>- Returns:
- the value as an object of type V
- See Also:
TakesValue.setValue(V)
-
setValue
public void setValue(T value)
Description copied from interface:TakesValueSets the value.- Specified by:
setValuein interfaceTakesValue<T>- Parameters:
value- a value object of type V- See Also:
TakesValue.getValue()
-
-