Interface HasRequestContext<T>
-
- Type Parameters:
T- the type of data being edited
- All Superinterfaces:
Editor<T>
public interface HasRequestContext<T> extends Editor<T>
Editors used withRequestFactoryEditorDriverthat implement this interface will be provided with theRequestContextassociated with the current editing session.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.gwt.editor.client.Editor
Editor.Ignore, Editor.Path
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetRequestContext(RequestContext ctx)Called byRequestFactoryEditorDriverwith theRequestContextpassed intoedit()ornullifdisplay()is called.
-
-
-
Method Detail
-
setRequestContext
void setRequestContext(RequestContext ctx)
Called byRequestFactoryEditorDriverwith theRequestContextpassed intoedit()ornullifdisplay()is called.- Parameters:
ctx- the RequestContext associated with the current editing session which may benull
-
-