Uses of Class
java.io.Writer

Packages that use Writer
java.io Input/Output support 
lejos.io leJOS specific support for java.io 
 

Uses of Writer in java.io
 

Subclasses of Writer in java.io
 class BufferedWriter
          NOTE: Text writing is not synchronized either like standard Java.
 class OutputStreamWriter
           
 class StringWriter
           
 

Methods in java.io that return Writer
 Writer Writer.append(char c)
           
 Writer Writer.append(CharSequence str)
           
 Writer Writer.append(CharSequence str, int start, int end)
           
 Writer StringWriter.append(CharSequence str, int start, int end)
           
 Writer BufferedWriter.append(CharSequence str, int start, int end)
           
 

Constructors in java.io with parameters of type Writer
BufferedWriter(Writer out)
          In the standard Java API the constructor accepts a Writer object, such as OutputStreamWriter.
BufferedWriter(Writer out, int size)
           
 

Uses of Writer in lejos.io
 

Subclasses of Writer in lejos.io
 class LejosOutputStreamWriter
          Abstract Single Byte Character Set OutputStream Writer.
 

Methods in lejos.io that return Writer
 Writer LejosOutputStreamWriter.append(char c)
           
 Writer LejosOutputStreamWriter.append(CharSequence str, int start, int end)