JAL-3210 Barebones gradle/buildship/eclipse. See README
[jalview.git] / unused / javajs / api / GenericOutputChannel.java
diff --git a/unused/javajs/api/GenericOutputChannel.java b/unused/javajs/api/GenericOutputChannel.java
deleted file mode 100644 (file)
index 73649d7..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package javajs.api;
-
-public interface GenericOutputChannel {
-
-  boolean isBigEndian();
-
-  void writeByteAsInt(int b);
-
-  void write(byte[] b, int off, int n);
-
-  void writeInt(int i);
-
-  void reset();
-
-  String closeChannel();
-
-  void writeLong(long b);
-
-  void writeShort(short i);
-
-
-}