1 9 package j2me.io; 10 import java.io.IOException ; 11 import java.io.InputStream ; 12 import j2me.lang.UnsupportedOperationException; 13 14 17 public class ObjectInputStream extends InputStream implements 18 ObjectInput { 19 20 protected ObjectInputStream() throws IOException , SecurityException { 22 } 23 24 public ObjectInputStream(InputStream in) throws IOException { 25 throw new UnsupportedOperationException (); 26 } 27 28 public void defaultReadObject() throws IOException , ClassNotFoundException { 29 throw new UnsupportedOperationException (); 30 } 31 32 public int read() throws IOException { 33 throw new UnsupportedOperationException (); 34 } 35 36 public Object readObject() throws ClassNotFoundException , IOException { 37 throw new UnsupportedOperationException (); 38 } 39 40 public boolean readBoolean() throws IOException { 41 throw new UnsupportedOperationException (); 42 } 43 44 public byte readByte() throws IOException { 45 throw new UnsupportedOperationException (); 46 } 47 48 public char readChar() throws IOException { 49 throw new UnsupportedOperationException (); 50 } 51 52 public void readFully(byte[] b) throws IOException { 53 throw new UnsupportedOperationException (); 54 } 55 56 public void readFully(byte[] b, int off, int len) throws IOException { 57 throw new UnsupportedOperationException (); 58 } 59 60 public int readInt() throws IOException { 61 throw new UnsupportedOperationException (); 62 } 63 64 public String readLine() throws IOException { 65 throw new UnsupportedOperationException (); 66 } 67 68 public long readLong() throws IOException { 69 throw new UnsupportedOperationException (); 70 } 71 72 public short readShort() throws IOException { 73 throw new UnsupportedOperationException (); 74 } 75 76 public int readUnsignedByte() throws IOException { 77 throw new UnsupportedOperationException (); 78 } 79 80 public int readUnsignedShort() throws IOException { 81 throw new UnsupportedOperationException (); 82 } 83 84 public String readUTF() throws IOException { 85 throw new UnsupportedOperationException (); 86 } 87 88 public int skipBytes(int n) throws IOException { 89 throw new UnsupportedOperationException (); 90 } 91 92 103 } | Popular Tags |