001: package java.io;
002:
003: import java.nio.channels.FileChannel;
004: import gnu.java.nio.channels.FileChannelImpl;
005:
006: public class RandomAccessFile implements DataOutput, DataInput {
007: public RandomAccessFile(File file, String mode)
008: throws FileNotFoundException {
009: }
010:
011: public RandomAccessFile(String fileName, String mode)
012: throws FileNotFoundException {
013: }
014:
015: public void close() throws IOException {
016: }
017:
018: public final FileDescriptor getFD() throws IOException {
019: }
020:
021: public long getFilePointer() throws IOException {
022: }
023:
024: public void setLength(long newLen) throws IOException {
025: }
026:
027: public long length() throws IOException {
028: }
029:
030: public int read() throws IOException {
031: }
032:
033: public int read(byte[] buffer) throws IOException {
034: }
035:
036: public int read(byte[] buffer, int offset, int len)
037: throws IOException {
038: }
039:
040: public final boolean readBoolean() throws IOException {
041: }
042:
043: public final byte readByte() throws IOException {
044: }
045:
046: public final char readChar() throws IOException {
047: }
048:
049: public final double readDouble() throws IOException {
050: }
051:
052: public final float readFloat() throws IOException {
053: }
054:
055: public final void readFully(byte[] buffer) throws IOException {
056: }
057:
058: public final void readFully(byte[] buffer, int offset, int count)
059: throws IOException {
060: }
061:
062: public final int readInt() throws IOException {
063: }
064:
065: public final String readLine() throws IOException {
066: }
067:
068: public final long readLong() throws IOException {
069: }
070:
071: public final short readShort() throws IOException {
072: }
073:
074: public final int readUnsignedByte() throws IOException {
075: }
076:
077: public final int readUnsignedShort() throws IOException {
078: }
079:
080: public final String readUTF() throws IOException {
081: }
082:
083: public void seek(long pos) throws IOException {
084: }
085:
086: public int skipBytes(int numBytes) throws IOException {
087: }
088:
089: public void write(int oneByte) throws IOException {
090: }
091:
092: public void write(byte[] buffer) throws IOException {
093: }
094:
095: public void write(byte[] buffer, int offset, int len)
096: throws IOException {
097: }
098:
099: public final void writeBoolean(boolean val) throws IOException {
100: }
101:
102: public final void writeByte(int v) throws IOException {
103: }
104:
105: public final void writeShort(int v) throws IOException {
106: }
107:
108: public final void writeChar(int v) throws IOException {
109: }
110:
111: public final void writeInt(int v) throws IOException {
112: }
113:
114: public final void writeLong(long v) throws IOException {
115: }
116:
117: public final void writeFloat(float v) throws IOException {
118: }
119:
120: public final void writeDouble(double v) throws IOException {
121: }
122:
123: public final void writeBytes(String s) throws IOException {
124: }
125:
126: public final void writeChars(String s) throws IOException {
127: }
128:
129: public final void writeUTF(String s) throws IOException {
130: }
131:
132: public final synchronized FileChannel getChannel() {
133: }
134: }
|