view src/treeVnc/MyDataInputStream.java @ 6:01cdbc95142f default tip

update build.xml
author Yu Taninari <you@cr.ie.u-ryukyu.ac.jp>
date Mon, 30 Apr 2012 16:04:44 +0900
parents 970d5ac80256
children
line wrap: on
line source

package treeVnc;

import java.io.IOException;

public interface MyDataInputStream {

	void readFully(byte[] b, int off, int len) throws IOException;

	int available() throws IOException;

	int skipBytes(int n) throws IOException;

	int readUnsignedByte() throws IOException;

	int readUnsignedShort() throws IOException;

	int readInt() throws IOException;

	void read(byte[] headBuf) throws IOException;

	boolean markSupported();

	void mark(int i);

	void reset();

}