package java.io;

public class DataOutputStream extends OutputStream implements DataOutput
{
 protected OutputStream out;

 public DataOutputStream(OutputStream outputstream_1)
 {
 }

 public void write(int int_1) throws IOException
 {
 }

 public void write(byte[] bytes_1, int int_1, int int_2) throws IOException
 {
 }

 public void flush() throws IOException
 {
 }

 public void close() throws IOException
 {
 }

 public final void writeBoolean(boolean boolean_1) throws IOException
 {
 }

 public final void writeByte(int int_1) throws IOException
 {
 }

 public final void writeShort(int int_1) throws IOException
 {
 }

 public final void writeChar(int int_1) throws IOException
 {
 }

 public final void writeInt(int int_1) throws IOException
 {
 }

 public final void writeLong(long long_1) throws IOException
 {
 }

 public final void writeFloat(float float_1) throws IOException
 {
 }

 public final void writeDouble(double double_1) throws IOException
 {
 }

 public final void writeChars(String string_1) throws IOException
 {
 }

 public final void writeUTF(String string_1) throws IOException
 {
 }

}