|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjava.io.OutputStream
koala.dynamicjava.gui.JTextComponentOutputStream
An output stream that writes to a swing JTextComponent
| Field Summary | |
protected javax.swing.text.JTextComponent |
textComponent
The text component to write to |
| Constructor Summary | |
JTextComponentOutputStream(javax.swing.text.JTextComponent tc)
Creates a new output stream |
|
| Method Summary | |
void |
write(byte[] b,
int off,
int len)
Writes len bytes from the specified byte array
starting at offset off to this output stream. |
void |
write(int b)
Writes the specified byte to this output stream. |
| Methods inherited from class java.io.OutputStream |
close, flush, write |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected javax.swing.text.JTextComponent textComponent
| Constructor Detail |
public JTextComponentOutputStream(javax.swing.text.JTextComponent tc)
tc - the text component that will receive the output| Method Detail |
public void write(int b)
throws java.io.IOException
Subclasses of OutputStream must provide an
implementation for this method.
b - the byte.
java.io.IOException - if an I/O error occurs.
public void write(byte[] b,
int off,
int len)
throws java.io.IOException
len bytes from the specified byte array
starting at offset off to this output stream.
The write method of OutputStream calls
the write method of one argument on each of the bytes to be
written out. Subclasses are encouraged to override this method and
provide a more efficient implementation.
b - the data.off - the start offset in the data.len - the number of bytes to write.
java.io.IOException - if an I/O error occurs.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||