Class FakeEditorSource<T>
- java.lang.Object
-
- com.google.gwt.editor.client.adapters.EditorSource<FakeLeafValueEditor<T>>
-
- com.google.gwt.editor.client.testing.FakeEditorSource<T>
-
- Type Parameters:
T- the type being edited
public class FakeEditorSource<T> extends EditorSource<FakeLeafValueEditor<T>>
A trivial implementation ofEditorSourcethat createsFakeLeafValueEditorinstances.
-
-
Field Summary
Fields Modifier and Type Field Description static intDISPOSEDReturn value forgetLastKnownPosition(com.google.gwt.editor.client.testing.FakeLeafValueEditor<T>)if the editor has been passed intodispose(com.google.gwt.editor.client.testing.FakeLeafValueEditor<T>).static intUNKNOWNReturn value forgetLastKnownPosition(com.google.gwt.editor.client.testing.FakeLeafValueEditor<T>)if the editor was not created by this FakeEditorSource.
-
Constructor Summary
Constructors Constructor Description FakeEditorSource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FakeLeafValueEditor<T>create(int index)Create a new Editor.FakeLeafValueEditor<T>createEditorForTraversal()Creates a temporary sub-Editor to use for traversal.voiddispose(FakeLeafValueEditor<T> subEditor)Called when an Editor no longer requires a sub-Editor.intgetLastKnownPosition(FakeLeafValueEditor<T> editor)voidsetIndex(FakeLeafValueEditor<T> editor, int index)Re-order a sub-Editor.-
Methods inherited from class com.google.gwt.editor.client.adapters.EditorSource
create
-
-
-
-
Field Detail
-
DISPOSED
public static final int DISPOSED
Return value forgetLastKnownPosition(com.google.gwt.editor.client.testing.FakeLeafValueEditor<T>)if the editor has been passed intodispose(com.google.gwt.editor.client.testing.FakeLeafValueEditor<T>).- See Also:
- Constant Field Values
-
UNKNOWN
public static final int UNKNOWN
Return value forgetLastKnownPosition(com.google.gwt.editor.client.testing.FakeLeafValueEditor<T>)if the editor was not created by this FakeEditorSource.- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public FakeLeafValueEditor<T> create(int index)
Description copied from class:EditorSourceCreate a new Editor.- Specified by:
createin classEditorSource<FakeLeafValueEditor<T>>- Parameters:
index- the position at which the new Editor should be displayed- Returns:
- an
Editorof type E
-
createEditorForTraversal
public FakeLeafValueEditor<T> createEditorForTraversal()
Description copied from class:EditorSourceCreates a temporary sub-Editor to use for traversal.For backwards compatibility with GWT 2.5.0 and earlier, the default implementation calls
create(0)anddisposesthe editor right away.- Overrides:
createEditorForTraversalin classEditorSource<FakeLeafValueEditor<T>>- Returns:
- an
Editorof type E - See Also:
ListEditor.createEditorForTraversal(),EditorContext.traverseSyntheticCompositeEditor(com.google.gwt.editor.client.EditorVisitor)
-
dispose
public void dispose(FakeLeafValueEditor<T> subEditor)
Description copied from class:EditorSourceCalled when an Editor no longer requires a sub-Editor. The default implementation is a no-op.- Overrides:
disposein classEditorSource<FakeLeafValueEditor<T>>- Parameters:
subEditor- anEditorof type E
-
getLastKnownPosition
public int getLastKnownPosition(FakeLeafValueEditor<T> editor)
-
setIndex
public void setIndex(FakeLeafValueEditor<T> editor, int index)
Description copied from class:EditorSourceRe-order a sub-Editor. The default implementation is a no-op.- Overrides:
setIndexin classEditorSource<FakeLeafValueEditor<T>>- Parameters:
editor- anEditorof type Eindex- the index of the Editor
-
-