public static interface

CompositeEditor.EditorChain

com.google.gwt.editor.client.CompositeEditor.EditorChain<C, E extends com.google.gwt.editor.client.Editor<C>>
Known Indirect Subclasses

Class Overview

Allows instances of the component type to be attached to the Editor framework.

See Also

Summary

Public Methods
abstract void attach(C object, E subEditor)
Editors attached to the chain will be automatically flushed as if they were a statically-defined sub-Editor.
abstract void detach(E subEditor)
Detach a sub-Editor from the editor chain.
abstract C getValue(E subEditor)
Retrieves the value associated with the editor.

Public Methods

public abstract void attach (C object, E subEditor)

Editors attached to the chain will be automatically flushed as if they were a statically-defined sub-Editor.

Parameters
object the object to edit
subEditor the Editor to populate

public abstract void detach (E subEditor)

Detach a sub-Editor from the editor chain.

Parameters
subEditor an Editor previously passed into attach(C, E)

public abstract C getValue (E subEditor)

Retrieves the value associated with the editor.

Parameters
subEditor an Editor previously passed into attach(C, E)
Returns
  • the value associated with the editor