public interface IErrorBox
The IErrorBox interface describes the operations that ICE expects from a Widget that can report errors.
Modifier and Type | Method and Description |
---|---|
void |
display()
This operation directs the IErrorBox to display its message.
|
java.lang.String |
getErrorString()
This operation retrieves the error string that is currently stored in the ErrorBoxWidget.
|
void |
setErrorString(java.lang.String error)
This operation sets the error string that will be displayed by the ErrorBoxWidget.
|
void setErrorString(java.lang.String error)
This operation sets the error string that will be displayed by the ErrorBoxWidget.
error
- A string containing the error message that should be displayed.
java.lang.String getErrorString()
This operation retrieves the error string that is currently stored in the ErrorBoxWidget.
The error string.
void display()
This operation directs the IErrorBox to display its message. It must be implemented by subclasses that code to a specific UI API (SWT, Swing).