Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

cxtable
Class TextAreaConsole  view TextAreaConsole download TextAreaConsole.java

java.lang.Object
  extended byjava.io.OutputStream
      extended bycxtable.TextAreaConsole

public class TextAreaConsole
extends java.io.OutputStream


Field Summary
private  java.awt.Panel p
           
private  java.awt.TextArea ta
           
 
Constructor Summary
TextAreaConsole()
           
 
Method Summary
 void clear()
           
 java.awt.Frame create_frame()
           
 java.awt.Panel create()
           
static void main(java.lang.String[] args)
           
 void print(java.lang.Object s)
           
 void println(java.lang.String s)
           
 void write(char c)
           
 void write(char[] c)
           
 void write(double d)
           
 void write(float f)
           
 void write(int i)
          This method writes a single byte to the output stream.
 void write(long l)
           
 void write(java.lang.String s)
           
 
Methods inherited from class java.io.OutputStream
close, flush, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ta

private java.awt.TextArea ta

p

private java.awt.Panel p
Constructor Detail

TextAreaConsole

public TextAreaConsole()
Method Detail

create

public java.awt.Panel create()

create_frame

public java.awt.Frame create_frame()

println

public void println(java.lang.String s)

write

public void write(int i)
Description copied from class: java.io.OutputStream
This method writes a single byte to the output stream. The byte written is the low eight bits of the int passed and a argument.

Subclasses must provide an implementation of this abstract method


write

public void write(float f)

write

public void write(long l)

write

public void write(char[] c)

write

public void write(char c)

write

public void write(java.lang.String s)

write

public void write(double d)

print

public void print(java.lang.Object s)

clear

public void clear()

main

public static void main(java.lang.String[] args)