01: package java.io;
02:
03: public class DataOutputStream extends FilterOutputStream implements
04: DataOutput {
05: protected int written;
06:
07: public DataOutputStream(OutputStream out) {
08: }
09:
10: public void flush() throws IOException {
11: }
12:
13: public final int size() {
14: }
15:
16: public synchronized void write(int value) throws IOException {
17: }
18:
19: public synchronized void write(byte[] buf, int offset, int len)
20: throws IOException {
21: }
22:
23: public final void writeBoolean(boolean value) throws IOException {
24: }
25:
26: public final void writeByte(int value) throws IOException {
27: }
28:
29: public final synchronized void writeShort(int value)
30: throws IOException {
31: }
32:
33: public final synchronized void writeChar(int value)
34: throws IOException {
35: }
36:
37: public final synchronized void writeInt(int value)
38: throws IOException {
39: }
40:
41: public final synchronized void writeLong(long value)
42: throws IOException {
43: }
44:
45: public final void writeFloat(float value) throws IOException {
46: }
47:
48: public final void writeDouble(double value) throws IOException {
49: }
50:
51: public final void writeBytes(String value) throws IOException {
52: }
53:
54: public final void writeChars(String value) throws IOException {
55: }
56:
57: public synchronized final void writeUTF(String value)
58: throws IOException {
59: }
60: }
|