Uses of Interface
com.google.gwt.editor.client.Editor
Package
Description
A framework for editing bean-like objects.
Adapters for the bean editor framework.
Classes used for testing the bean editor support.
User interface components for the bean editor framework.
User interface adapters for the bean editor framework.
A package for managing client-server requests.
Classes used for testing the request factory service.
-
Uses of Editor in com.google.gwt.editor.client
Modifier and TypeInterfaceDescriptioninterface
CompositeEditor<T,
C, E extends Editor<? super C>> An interface that indicates that a given Editor is composed of an unknown number of sub-Editors all of the same type.static interface
CompositeEditor.EditorChain<C,
E extends Editor<? super C>> Allows instances of the component type to be attached to the Editor framework.interface
Extended by view objects that wish to participate in an Editor hierarchy, but that do not implement theEditor
contract directly.interface
SimpleBeanEditorDriver<T,
E extends Editor<? super T>> Automates editing of simple bean-like objects.Modifier and TypeInterfaceDescriptioninterface
CompositeEditor<T,
C, E extends Editor<? super C>> An interface that indicates that a given Editor is composed of an unknown number of sub-Editors all of the same type.interface
Indicates that an Editor requires an EditorDelegate.interface
Editors that wish to be notified about ConstraintViolations in the value being edited should implement this interface.interface
Used to edit non-object or immutable values.interface
Editors whose behavior changes based on the value being edited will implement this interface. -
Uses of Editor in com.google.gwt.editor.client.adapters
Modifier and TypeClassDescriptionclass
EditorSource<E extends Editor<?>>
An entity capable of creating and destroying instances of Editors.class
ListEditor<T,
E extends Editor<? super T>> Manages a list of objects and their associated Editors.(package private) class
ListEditorWrapper<T,
E extends Editor<? super T>> Synchronizes a list of objects and a list of Editors.class
OptionalFieldEditor<T,
E extends Editor<? super T>> This adapter can be used when a type being edited has an optional field that may be nullified or reassigned as part of the editing process.Modifier and TypeClassDescriptionclass
Adapts the HasData interface to the Editor framework.class
ListEditor<T,
E extends Editor<? super T>> Manages a list of objects and their associated Editors.class
OptionalFieldEditor<T,
E extends Editor<? super T>> This adapter can be used when a type being edited has an optional field that may be nullified or reassigned as part of the editing process.class
SimpleEditor<T>
A trivial implementation of LeafValueEditor than can be used for "hidden" properties when composing UI-based Editors.class
Adapts theTakesValue
interface to the Editor framework.Modifier and TypeMethodDescriptionstatic <T,
E extends Editor<? super T>>
ListEditor<T, E> ListEditor.of
(EditorSource<E> source) Create a ListEditor backed by an EditorSource.static <T,
E extends Editor<? super T>>
OptionalFieldEditor<T, E> OptionalFieldEditor.of
(E subEditor) Construct an OptionalFieldEditor backed by the given sub-Editor. -
Uses of Editor in com.google.gwt.editor.client.testing
Modifier and TypeClassDescriptionclass
MockSimpleBeanEditorDriver<T,
E extends Editor<T>> A no-op implementation ofSimpleBeanEditorDriver
that records its inputs. -
Uses of Editor in com.google.gwt.editor.ui.client
Modifier and TypeClassDescriptionclass
A simple decorator to display leaf widgets with an error message. -
Uses of Editor in com.google.gwt.editor.ui.client.adapters
Modifier and TypeClassDescriptionclass
Adapts the HasText interface to the Editor framework.class
Adapts theValueBoxBase
interface to the Editor framework. -
Uses of Editor in com.google.web.bindery.requestfactory.gwt.client
Modifier and TypeInterfaceDescriptioninterface
RequestFactoryEditorDriver<P,
E extends Editor<? super P>> The interface that links RequestFactory and the Editor framework together.Modifier and TypeInterfaceDescriptioninterface
Editors used withRequestFactoryEditorDriver
that implement this interface will be provided with theRequestContext
associated with the current editing session. -
Uses of Editor in com.google.web.bindery.requestfactory.gwt.client.testing
Modifier and TypeClassDescriptionclass
MockRequestFactoryEditorDriver<P,
E extends Editor<P>> A no-op implementation ofRequestFactoryEditorDriver
that records its inputs.