C - the type of object to be editedE - the type of Editorpublic static interface CompositeEditor.EditorChain<C,E extends Editor<? super C>>
MockEditorChain| Modifier and Type | Method and Description | 
|---|---|
| void | attach(C object,
      E subEditor)Editors attached to the chain will be automatically flushed as if they
 were a statically-defined sub-Editor. | 
| void | detach(E subEditor)Detach a sub-Editor from the editor chain. | 
| C | getValue(E subEditor)Retrieves the value associated with the editor. | 
void attach(C object, E subEditor)
object - the object to editsubEditor - the Editor to populatevoid detach(E subEditor)
subEditor - an Editor previously passed into attach(C, E)C getValue(E subEditor)
subEditor - an Editor previously passed into attach(C, E)