1 9 10 package j2me.io; 11 import j2me.lang.UnsupportedOperationException; 12 import java.io.IOException ; 13 import java.io.OutputStream ; 14 17 public class ObjectOutputStream 18 extends OutputStream implements ObjectOutput { 19 20 protected ObjectOutputStream() throws IOException , SecurityException { 22 } 23 24 public ObjectOutputStream(OutputStream out) throws IOException { 25 throw new UnsupportedOperationException (); 26 } 27 28 public void defaultWriteObject() throws IOException { 29 throw new UnsupportedOperationException (); 30 } 31 32 public void write(int arg0) throws IOException { 33 throw new UnsupportedOperationException (); 34 } 35 36 public void writeObject(Object obj) throws IOException { 37 throw new UnsupportedOperationException (); 38 } 39 40 public void writeBoolean(boolean v) throws IOException { 41 throw new UnsupportedOperationException (); 42 } 43 44 public void writeByte(int v) throws IOException { 45 throw new UnsupportedOperationException (); 46 } 47 48 public void writeBytes(String s) throws IOException { 49 throw new UnsupportedOperationException (); 50 } 51 52 public void writeChar(int v) throws IOException { 53 throw new UnsupportedOperationException (); 54 } 55 56 public void writeChars(String s) throws IOException { 57 throw new UnsupportedOperationException (); 58 } 59 60 public void writeInt(int v) throws IOException { 61 throw new UnsupportedOperationException (); 62 } 63 64 public void writeLong(long v) throws IOException { 65 throw new UnsupportedOperationException (); 66 } 67 68 public void writeShort(int v) throws IOException { 69 throw new UnsupportedOperationException (); 70 } 71 72 public void writeUTF(String str) throws IOException { 73 throw new UnsupportedOperationException (); 74 } 75 76 87 88 } 89 | Popular Tags |