Interface SimpleBeanEditorDriver<T,E extends Editor<? super T>>

Type Parameters:
T - the type being edited
E - the Editor for the type
All Superinterfaces:
EditorDriver<T>
All Known Implementing Classes:
MockSimpleBeanEditorDriver

public interface SimpleBeanEditorDriver<T,E extends Editor<? super T>> extends EditorDriver<T>
Automates editing of simple bean-like objects. The EditorDelegate provided from this driver has a no-op implementation of EditorDelegate.subscribe().
 interface MyDriver extends SimpleBeanEditorDriver<MyObject, MyObjectEditor> {}
 MyDriver instance = GWT.create(MyDriver.class);
 {
 MyObjectEditor editor = new MyObjectEditor();
 instance.initialize(editor);
 // Do stuff 
 instance.edit(myObjectInstance);
 // Do more stuff 
 instance.flush();
 }
 

Note that this interface is intended to be implemented by generated code and is subject to API expansion in the future.

See Also: