package java.io;

public class OutputStreamWriter extends Writer
{

 public OutputStreamWriter(OutputStream)
 {
 }
 
 public OutputStreamWriter(OutputStream, String) throws UnsupportedEncodingException
 {
 }
 
 public void write(int) throws IOException
 {
 }
 
 public void write(char[], int, int) throws IOException
 {
 }
 
 public void write(String, int, int) throws IOException
 {
 }
 
 public void flush() throws IOException
 {
 }
 
 public void close() throws IOException
 {
 }
 
}