| java.lang.Object org.netbeans.lib.terminalemulator.TermStream org.netbeans.lib.terminalemulator.LineDiscipline
LineDiscipline | public class LineDiscipline extends TermStream (Code) | | Do the sort of stuff pty's normally do:
- echoing
- CR/NL mappings
- BS processing
- Line buffering.
Currently the settings are hardcoded to simulate a pty setup for running
shells.
This class is not complete by any means and is merely an example of
a TermStream. Things that it might do:
- TAB processing
- conversion of control characters to "signals".
|
flush | public void flush()(Code) | | |
putChar | public void putChar(char c)(Code) | | |
putChars | public void putChars(char buf, int offset, int count)(Code) | | |
sendChar | public void sendChar(char c)(Code) | | |
sendChars | public void sendChars(char c, int offset, int count)(Code) | | |
send_buf | char[] send_buf(int n)(Code) | | |
|
|