Methods Summary |
---|
public void | close()This method forces us to over-ride the method defined in java.io.Writer
|
public void | flush()This method forces us to over-ride the method defined in java.io.Writer
|
public java.io.OutputStream | getOutputStream()If this method returns null, getWriter() must return non-null.
Get the OutputStream that this writer sends its output to.
|
public java.io.Writer | getWriter()If this method returns null, getOutputStream() must return non-null.
Get the writer that this writer sends its output to.
It is possible that the Writer returned by this method does not
implement the WriterChain interface.
|
public void | write(int val)This method forces us to over-ride the method defined in java.io.Writer
|
public void | write(char[] chars)This method forces us to over-ride the method defined in java.io.Writer
|
public void | write(char[] chars, int start, int count)This method forces us to over-ride the method defined in java.io.Writer
|
public void | write(java.lang.String chars)This method forces us to over-ride the method defined in java.io.Writer
|
public void | write(java.lang.String chars, int start, int count)This method forces us to over-ride the method defined in java.io.Writer
|