01: package java.io;
02:
03: public class DataInputStream extends FilterInputStream implements
04: DataInput {
05: boolean ignoreInitialNewline = false;
06: byte[] buf = new byte[8];
07:
08: public DataInputStream(InputStream in) {
09: }
10:
11: public final int read(byte[] b) throws IOException {
12: }
13:
14: public final int read(byte[] b, int off, int len)
15: throws IOException {
16: }
17:
18: public final boolean readBoolean() throws IOException {
19: }
20:
21: public final byte readByte() throws IOException {
22: }
23:
24: public final char readChar() throws IOException {
25: }
26:
27: public final double readDouble() throws IOException {
28: }
29:
30: public final float readFloat() throws IOException {
31: }
32:
33: public final void readFully(byte[] b) throws IOException {
34: }
35:
36: public final void readFully(byte[] buf, int offset, int len)
37: throws IOException {
38: }
39:
40: public final int readInt() throws IOException {
41: }
42:
43: public final String readLine() throws IOException {
44: }
45:
46: public final long readLong() throws IOException {
47: }
48:
49: public final short readShort() throws IOException {
50: }
51:
52: public final int readUnsignedByte() throws IOException {
53: }
54:
55: public final int readUnsignedShort() throws IOException {
56: }
57:
58: public final String readUTF() throws IOException {
59: }
60:
61: public final static String readUTF(DataInput in) throws IOException {
62: }
63:
64: public final int skipBytes(int n) throws IOException {
65: }
66:
67: static boolean convertToBoolean(int b) throws EOFException {
68: }
69:
70: static byte convertToByte(int i) throws EOFException {
71: }
72:
73: static int convertToUnsignedByte(int i) throws EOFException {
74: }
75:
76: static char convertToChar(byte[] buf) {
77: }
78:
79: static short convertToShort(byte[] buf) {
80: }
81:
82: static int convertToUnsignedShort(byte[] buf) {
83: }
84:
85: static int convertToInt(byte[] buf) {
86: }
87:
88: static long convertToLong(byte[] buf) {
89: }
90:
91: static String convertFromUTF(byte[] buf) throws EOFException,
92: UTFDataFormatException {
93: }
94: }
|