StreamedTextAreapublic class StreamedTextArea extends TextArea
Fields Summary |
---|
OutputStream | theOutput |
Constructors Summary |
---|
public StreamedTextArea()
this("", 0, 0, SCROLLBARS_BOTH);
| public StreamedTextArea(String text)
this(text, 0, 0, SCROLLBARS_BOTH);
| public StreamedTextArea(int rows, int columns)
this("", rows, columns, SCROLLBARS_BOTH);
| public StreamedTextArea(String text, int rows, int columns)
this(text, rows, columns, SCROLLBARS_BOTH);
| public StreamedTextArea(String text, int rows, int columns, int scrollbars)
super(text, rows, columns, scrollbars);
setEditable(false);
|
|