Java Platform 1.2
Beta 4

Uses of Class
java.io.Writer

Packages that use Writer
com.sun.java.swing.text Provides classes and interfaces that deal with editable and noneditable text components.  
com.sun.java.swing.text.html Provides the class (HTMLEditorKit) and supporting classes for creating HTML text editors.  
com.sun.java.swing.text.rtf Provides a class (RTFEditorKit) for creating Rich-Text-Format text editors.  
java.io Provides for system input and output through data streams, serialization and the file system.  
 

Uses of Writer in com.sun.java.swing.text
 

Methods in com.sun.java.swing.text with parameters of type Writer
 void JTextComponent.write(Writer out)
          Stores the contents of the model into the given stream.
abstract  void EditorKit.write(Writer out, Document doc, int pos, int len)
          Writes content from a document to the given stream in a format appropriate for this kind of content handler.
 void DefaultEditorKit.write(Writer out, Document doc, int pos, int len)
          Writes content from a document to the given stream as plain text.
 

Constructors in com.sun.java.swing.text with parameters of type Writer
AbstractWriter.AbstractWriter(Writer w, Document doc)
          Creates a new AbstractWriter.
AbstractWriter.AbstractWriter(Writer w, Element root)
          Creates a new AbstractWriter.
 

Uses of Writer in com.sun.java.swing.text.html
 

Methods in com.sun.java.swing.text.html with parameters of type Writer
 void HTMLEditorKit.write(Writer out, Document doc, int pos, int len)
          Write content from a document to the given stream in a format appropriate for this kind of content handler.
 

Constructors in com.sun.java.swing.text.html with parameters of type Writer
HTMLWriter.HTMLWriter(Writer w, HTMLDocument doc)
          Creates a new HTMLWriter.
MinimalHTMLWriter.MinimalHTMLWriter(Writer w, StyledDocument doc)
          Creates a new MinimalHTMLWriter.
 

Uses of Writer in com.sun.java.swing.text.rtf
 

Methods in com.sun.java.swing.text.rtf with parameters of type Writer
 void RTFEditorKit.write(Writer out, Document doc, int pos, int len)
          Write content from a document to the given stream as plain text.
 

Uses of Writer in java.io
 

Subclasses of Writer in java.io
  BufferedWriter
          Write text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.
  CharArrayWriter
          This class implements a character buffer that can be used as an Writer.
  FileWriter
          Convenience class for writing character files.
  FilterWriter
          Abstract class for writing filtered character streams.
  OutputStreamWriter
          Write characters to an output stream, translating characters into bytes according to a specified character encoding.
  PipedWriter
          Piped character-output streams.
  PrintWriter
          Print formatted representations of objects to a text-output stream.
  StringWriter
          A character stream that collects its output in a string buffer, which can then be used to construct a string.
 

Fields in java.io declared as Writer
protected  Writer FilterWriter.out
          The underlying character-output stream.
protected  Writer PrintWriter.out
          The underlying character-output stream of this PrintWriter.
 

Methods in java.io with parameters of type Writer
 void CharArrayWriter.writeTo(Writer out)
          Writes the contents of the buffer to another character stream.
 

Constructors in java.io with parameters of type Writer
FilterWriter.FilterWriter(Writer out)
          Create a new filtered writer.
PrintWriter.PrintWriter(Writer out)
          Create a new PrintWriter, without automatic line flushing.
PrintWriter.PrintWriter(Writer out, boolean autoFlush)
          Create a new PrintWriter.
BufferedWriter.BufferedWriter(Writer out)
          Create a buffered character-output stream that uses a default-sized output buffer.
BufferedWriter.BufferedWriter(Writer out, int sz)
          Create a new buffered character-output stream that uses an output buffer of the given size.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.