jay.yydebug
Class yyJInputStream
java.lang.Object
java.io.InputStream
jay.yydebug.yyJInputStream
- All Implemented Interfaces:
- KeyListener, Closeable, EventListener
public class yyJInputStream
- extends InputStream
- implements KeyListener
used to reroute standard input from a JTextArea.
Feeds all read methods from listening to typed keys.
Should not deadlock because one should generally not
read from within the event thread.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
line
protected final StringBuffer line
- line edit buffer.
queue
protected ArrayList queue
- completed lines, ready to be read.
Invariant: null after
close().
yyJInputStream
public yyJInputStream()
available
public int available()
throws IOException
- Overrides:
available in class InputStream
- Throws:
IOException
close
public void close()
throws IOException
- Specified by:
close in interface Closeable- Overrides:
close in class InputStream
- Throws:
IOException
read
public int read()
throws IOException
- Specified by:
read in class InputStream
- Throws:
IOException
read
public int read(byte[] b,
int off,
int len)
throws IOException
- Overrides:
read in class InputStream
- Throws:
IOException
skip
public long skip(long len)
- returns 0: cannot skip on a terminal.
- Overrides:
skip in class InputStream
keyPressed
public void keyPressed(KeyEvent ke)
- this one ensures that you can only type at the end.
This is executed within the event thread.
- Specified by:
keyPressed in interface KeyListener
keyTyped
public void keyTyped(KeyEvent ke)
- Specified by:
keyTyped in interface KeyListener
keyReleased
public void keyReleased(KeyEvent ke)
- Specified by:
keyReleased in interface KeyListener
Copyright © 2013. All Rights Reserved.