001: /*
002: * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
003: * Copyright (C) 2005 - Javolution (http://javolution.org/)
004: * All rights reserved.
005: *
006: * Permission to use, copy, modify, and distribute this software is
007: * freely granted, provided that this notice is preserved.
008: */
009: package j2me.io;
010:
011: import java.io.IOException;
012: import java.io.InputStream;
013: import j2me.lang.UnsupportedOperationException;
014:
015: /**
016: * Classes provided for serialization support.
017: */
018: public class ObjectInputStream extends InputStream implements
019: ObjectInput {
020:
021: // For sub-classes reimplementing this class.
022: protected ObjectInputStream() throws IOException, SecurityException {
023: }
024:
025: public ObjectInputStream(InputStream in) throws IOException {
026: throw new UnsupportedOperationException();
027: }
028:
029: public void defaultReadObject() throws IOException,
030: ClassNotFoundException {
031: throw new UnsupportedOperationException();
032: }
033:
034: public int read() throws IOException {
035: throw new UnsupportedOperationException();
036: }
037:
038: public Object readObject() throws ClassNotFoundException,
039: IOException {
040: throw new UnsupportedOperationException();
041: }
042:
043: public boolean readBoolean() throws IOException {
044: throw new UnsupportedOperationException();
045: }
046:
047: public byte readByte() throws IOException {
048: throw new UnsupportedOperationException();
049: }
050:
051: public char readChar() throws IOException {
052: throw new UnsupportedOperationException();
053: }
054:
055: public void readFully(byte[] b) throws IOException {
056: throw new UnsupportedOperationException();
057: }
058:
059: public void readFully(byte[] b, int off, int len)
060: throws IOException {
061: throw new UnsupportedOperationException();
062: }
063:
064: public int readInt() throws IOException {
065: throw new UnsupportedOperationException();
066: }
067:
068: public String readLine() throws IOException {
069: throw new UnsupportedOperationException();
070: }
071:
072: public long readLong() throws IOException {
073: throw new UnsupportedOperationException();
074: }
075:
076: public short readShort() throws IOException {
077: throw new UnsupportedOperationException();
078: }
079:
080: public int readUnsignedByte() throws IOException {
081: throw new UnsupportedOperationException();
082: }
083:
084: public int readUnsignedShort() throws IOException {
085: throw new UnsupportedOperationException();
086: }
087:
088: public String readUTF() throws IOException {
089: throw new UnsupportedOperationException();
090: }
091:
092: public int skipBytes(int n) throws IOException {
093: throw new UnsupportedOperationException();
094: }
095:
096: /*@JVM-1.1+@
097:
098: public float readFloat() throws IOException {
099: throw new UnsupportedOperationException();
100: }
101:
102: public double readDouble() throws IOException {
103: throw new UnsupportedOperationException();
104: }
105:
106: /**/
107: }
|