package java.io;

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

 public DataOutputStream(OutputStream)
 {
 }
 
 public void write(int) throws IOException
 {
 }
 
 public void write(byte[], int, int) throws IOException
 {
 }
 
 public void flush() throws IOException
 {
 }
 
 public void close() throws IOException
 {
 }
 
 public final void writeBoolean(boolean) throws IOException
 {
 }
 
 public final void writeByte(int) throws IOException
 {
 }
 
 public final void writeShort(int) throws IOException
 {
 }
 
 public final void writeChar(int) throws IOException
 {
 }
 
 public final void writeInt(int) throws IOException
 {
 }
 
 public final void writeLong(long) throws IOException
 {
 }
 
 public final void writeFloat(float) throws IOException
 {
 }
 
 public final void writeDouble(double) throws IOException
 {
 }
 
 public final void writeChars(String) throws IOException
 {
 }
 
 public final void writeUTF(String) throws IOException
 {
 }
 
}