public interface IExtraInfoWidget
The IExtraInfoWidget interface describes the operations that ICE expects to use when it need to request additional information from a user that was originally requested in an IFormWidget. The content in an IExtraInfoWidget is dynamic and unexpected during runtime (thus the reason it wasn't originally in the IFormWidget), but it will always be of a form consist with the output created during ICore.process() if it needs. @see IClient
Modifier and Type | Method and Description |
---|---|
void |
display()
This operation directs the IExtraInfoWidget to display.
|
Form |
getForm()
This operation retrieves the Form from the Widget.
|
void |
setCloseListener(IWidgetClosedListener listener)
This operation sets a listener, an IWidgetClosedListener, that is waiting to be notified with the widget is closed and whether it was closed OK or if it was cancelled.
|
void |
setForm(Form form)
This operation sets the Form that should be displayed by the Widget.
|
void display()
This operation directs the IExtraInfoWidget to display. It must be implemented by subclasses that code to a specific UI API (SWT, Swing).
void setForm(Form form)
This operation sets the Form that should be displayed by the Widget.
form
- The Form.
Form getForm()
This operation retrieves the Form from the Widget.
The Form.
void setCloseListener(IWidgetClosedListener listener)
This operation sets a listener, an IWidgetClosedListener, that is waiting to be notified with the widget is closed and whether it was closed OK or if it was cancelled.
listener
-