Uses of Class
java.io.Writer

Packages that use Writer
de.cau.cs.kieler.klay.layered.graph Basic structures for the layered layouter. 
java.io Input/Output support 
js.tinyvm   
lejos.io leJOS specific support for java.io 
net.sf.antcontrib.cpptasks   
org.json This package contains the JSON implementation for java as it can be found on http://www.json.org/java 
 

Uses of Writer in de.cau.cs.kieler.klay.layered.graph
 

Methods in de.cau.cs.kieler.klay.layered.graph with parameters of type Writer
 void LayeredGraph.writeDotGraph(Writer writer)
          Outputs a representation of this graph in dot format to the given writer.
 

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 BufferedWriter.append(CharSequence str, int start, int end)
           
 Writer StringWriter.append(CharSequence str, int start, int end)
           
 Writer Writer.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 js.tinyvm
 

Methods in js.tinyvm with parameters of type Writer
 void BinaryReport.report(Writer writer)
          Create report.
 

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)
           
 

Uses of Writer in net.sf.antcontrib.cpptasks
 

Methods in net.sf.antcontrib.cpptasks with parameters of type Writer
 void VersionInfo.writeResource(Writer writer, org.apache.tools.ant.Project p, String executableName)
          Writes windows resource
 

Uses of Writer in org.json
 

Fields in org.json declared as Writer
protected  Writer JSONWriter.writer
          The writer that will receive the output.
 

Methods in org.json that return Writer
 Writer JSONArray.write(Writer writer)
          Write the contents of the JSONArray as JSON text to a writer.
 Writer JSONObject.write(Writer writer)
          Write the contents of the JSONObject as JSON text to a writer.
 

Methods in org.json with parameters of type Writer
 Writer JSONArray.write(Writer writer)
          Write the contents of the JSONArray as JSON text to a writer.
 Writer JSONObject.write(Writer writer)
          Write the contents of the JSONObject as JSON text to a writer.
 

Constructors in org.json with parameters of type Writer
JSONWriter(Writer w)
          Make a fresh JSONWriter.