view src/treeVnc/MyDataInputStream.java @ 62:b2492abdae2a Version1.0 tip

Added tag TreeVNC_version1.0 for changeset 318ec7415073
author Taninari YU <you@cr.ie.u-ryukyu.ac.jp>
date Sun, 12 Aug 2012 22:13:39 +0900 (2012-08-12)
parents 3e41bb95119b
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() throws IOException;
}