lejos.nxt
Class LCDOutputStream
java.lang.Object
   java.io.OutputStream
java.io.OutputStream
       lejos.nxt.LCDOutputStream
lejos.nxt.LCDOutputStream
- public class LCDOutputStream 
- extends OutputStream
A simple output stream that implements console output.
 It writes to the bottom line of the screen, scrolling the
 LCD up one line when writing to character position 0, 
 and starting a new line when the position reaches 16
 or a new line character is wriiten. 
 
 Used by System.out.println.
- Author:
- Lawrie Griffiths
 
| Method Summary | 
|  void | write(int c)Writes the specified byte to this output stream.
 | 
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
LCDOutputStream
public LCDOutputStream()
write
public void write(int c)
- Description copied from class: OutputStream
- Writes the specified byte to this output stream. The general 
 contract for writeis that one byte is written 
 to the output stream. The byte to be written is the eight 
 low-order bits of the argumentb. The 24 
 high-order bits ofbare ignored.
 Subclasses of OutputStreammust provide an 
 implementation for this method.
 
 
- 
- Specified by:
- writein class- OutputStream
 
- 
- Parameters:
- c- the- byte.