package java.io;

public abstract class Writer
{
 protected Object lock;

 protected Writer()
 {
 }
 
 protected Writer(Object object_1)
 {
 }
 
 public void write(int int_1) throws IOException
 {
 }
 
 public void write(char[] chars_1) throws IOException
 {
 }
 
 public abstract void write(char[] chars_1, int int_1, int int_2) throws IOException;
 
 public void write(String string_1) throws IOException
 {
 }
 
 public void write(String string_1, int int_1, int int_2) throws IOException
 {
 }
 
 public abstract void flush() throws IOException;
 
 public abstract void close() throws IOException;
 
}