kawa
Class TextAreaWriter

java.lang.Object
  extended by java.io.Writer
      extended by kawa.TextAreaWriter
All Implemented Interfaces:
java.io.Closeable, java.io.Flushable, java.lang.Appendable

public class TextAreaWriter
extends java.io.Writer

A Writer that appends its output to a TextArea. Based on code from Albert L. Ting" .


Field Summary
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
TextAreaWriter(java.awt.TextArea area)
           
 
Method Summary
 void close()
           
 void flush()
           
 void write(char[] data, int off, int len)
           
 void write(int x)
           
 void write(java.lang.String str)
           
 
Methods inherited from class java.io.Writer
append, append, append, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TextAreaWriter

public TextAreaWriter(java.awt.TextArea area)
Method Detail

write

public void write(int x)
Overrides:
write in class java.io.Writer

write

public void write(java.lang.String str)
Overrides:
write in class java.io.Writer

write

public void write(char[] data,
                  int off,
                  int len)
Specified by:
write in class java.io.Writer

flush

public void flush()
Specified by:
flush in interface java.io.Flushable
Specified by:
flush in class java.io.Writer

close

public void close()
Specified by:
close in interface java.io.Closeable
Specified by:
close in class java.io.Writer