01: /*
02: * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
03: * Copyright (C) 2005 - Javolution (http://javolution.org/)
04: * All rights reserved.
05: *
06: * Permission to use, copy, modify, and distribute this software is
07: * freely granted, provided that this notice is preserved.
08: */
09:
10: package j2me.io;
11:
12: import j2me.lang.UnsupportedOperationException;
13: import java.io.IOException;
14: import java.io.OutputStream;
15:
16: /**
17: * Classes provided for serialization support.
18: */
19: public class ObjectOutputStream extends OutputStream implements
20: ObjectOutput {
21:
22: // For sub-classes reimplementing this class.
23: protected ObjectOutputStream() throws IOException,
24: SecurityException {
25: }
26:
27: public ObjectOutputStream(OutputStream out) throws IOException {
28: throw new UnsupportedOperationException();
29: }
30:
31: public void defaultWriteObject() throws IOException {
32: throw new UnsupportedOperationException();
33: }
34:
35: public void write(int arg0) throws IOException {
36: throw new UnsupportedOperationException();
37: }
38:
39: public void writeObject(Object obj) throws IOException {
40: throw new UnsupportedOperationException();
41: }
42:
43: public void writeBoolean(boolean v) throws IOException {
44: throw new UnsupportedOperationException();
45: }
46:
47: public void writeByte(int v) throws IOException {
48: throw new UnsupportedOperationException();
49: }
50:
51: public void writeBytes(String s) throws IOException {
52: throw new UnsupportedOperationException();
53: }
54:
55: public void writeChar(int v) throws IOException {
56: throw new UnsupportedOperationException();
57: }
58:
59: public void writeChars(String s) throws IOException {
60: throw new UnsupportedOperationException();
61: }
62:
63: public void writeInt(int v) throws IOException {
64: throw new UnsupportedOperationException();
65: }
66:
67: public void writeLong(long v) throws IOException {
68: throw new UnsupportedOperationException();
69: }
70:
71: public void writeShort(int v) throws IOException {
72: throw new UnsupportedOperationException();
73: }
74:
75: public void writeUTF(String str) throws IOException {
76: throw new UnsupportedOperationException();
77: }
78:
79: /*@JVM-1.1+@
80:
81: public void writeFloat (float v) throws IOException {
82: throw new UnsupportedOperationException();
83: }
84:
85: public void writeDouble (double v) throws IOException {
86: throw new UnsupportedOperationException();
87: }
88:
89: /**/
90:
91: }
|