java.io
Class Writer

java.lang.Object
  |
  +--java.io.Writer
Direct Known Subclasses:
BufferedWriter, CharArrayWriter, FilterWriter, OutputStreamWriter, PipedWriter, PrintWriter, StringWriter

public abstract synchronized class Writer
extends Object


Field Summary
protected  Object lock
           
 
Constructor Summary
protected Writer()
           
protected Writer(Object)
           
 
Method Summary
abstract  void close()
           
abstract  void flush()
           
 void write(char[])
           
abstract  void write(char[], int, int)
           
 void write(int)
           
 void write(String)
           
 void write(String, int, int)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait
 

Field Detail

lock

protected Object lock
Constructor Detail

Writer

protected Writer()

Writer

protected Writer(Object)
Method Detail

write

public void write(int)
           throws IOException
IOException

write

public void write(char[])
           throws IOException
IOException

write

public abstract void write(char[],
                           int,
                           int)
                    throws IOException
IOException

write

public void write(String)
           throws IOException
IOException

write

public void write(String,
                  int,
                  int)
           throws IOException
IOException

flush

public abstract void flush()
                    throws IOException
IOException

close

public abstract void close()
                    throws IOException
IOException