package java.io;

public class OutputStreamWriter extends Writer
{

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