FileDocCategorySizeDatePackage
StreamedTextArea.javaAPI DocExample1267Sun Mar 28 19:05:36 BST 1999com.macfaq.awt

StreamedTextArea

public 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);

  
Methods Summary
public java.io.OutputStreamgetOutputStream()

    return theOutput;