org.xwt.mips -> org.ibex.nestedvm
[nestedvm.git] / src / org / xwt / mips / util / SeekableData.java
diff --git a/src/org/xwt/mips/util/SeekableData.java b/src/org/xwt/mips/util/SeekableData.java
deleted file mode 100644 (file)
index 2603aba..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-package org.xwt.mips.util;
-
-import java.io.IOException;
-
-public interface SeekableData { 
-    public int read(byte[] buf, int offset, int length) throws IOException;
-    public int write(byte[] buf, int offset, int length) throws IOException;
-    public int length() throws IOException;
-    public void seek(int pos) throws IOException;
-    public void close() throws IOException;
-    public int pos() throws IOException;
-}