All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptix.util.gui.TextAreaWriter

java.lang.Object
   |
   +----java.io.Writer
           |
           +----cryptix.util.gui.TextAreaWriter

public class TextAreaWriter
extends Writer
A class that extends Writer to write into a TextArea. Note that the output will not be displayed (i.e. the TextArea repainted) until flush() or close() is called.

Copyright © 1998 Systemics Ltd on behalf of the Cryptix Development Team.
All rights reserved.

$Revision: 1.1 $

Author:
David Hopwood

Constructor Index

 o TextAreaWriter(TextArea)
Creates a TextAreaWriter for the given TextArea.

Method Index

 o close()
 o flush()
 o write(char[], int, int)
 o write(String)
 o write(String, int, int)

Constructors

 o TextAreaWriter
 public TextAreaWriter(TextArea ta)
Creates a TextAreaWriter for the given TextArea.

Methods

 o write
 public void write(char ca[],
                   int offset,
                   int length)
Overrides:
write in class Writer
 o write
 public void write(String s)
Overrides:
write in class Writer
 o write
 public void write(String s,
                   int offset,
                   int length)
Overrides:
write in class Writer
 o flush
 public void flush()
Overrides:
flush in class Writer
 o close
 public void close()
Overrides:
close in class Writer

All Packages  Class Hierarchy  This Package  Previous  Next  Index