public interface IStreamingTextWidget
This widget streams output text to a client. Text that is posted to this widget can not be retrieved and it is an append-only interface.
Modifier and Type | Method and Description |
---|---|
void |
display()
This operation directs the IStreamingTextWidget to display.
|
void |
postText(java.lang.String sText)
This operation appends text to the output of the streaming text widget.
|
void |
setLabel(java.lang.String label)
This operation sets the label or name of the streaming output widget that should be displayed to clients.
|
void setLabel(java.lang.String label)
This operation sets the label or name of the streaming output widget that should be displayed to clients.
label
- The label
void postText(java.lang.String sText)
This operation appends text to the output of the streaming text widget.
sText
- The text that should be displayed.
void display()
This operation directs the IStreamingTextWidget to display. It must be implemented by subclasses that code to a specific UI API (SWT, Swing).