Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / src / javajs / api / GenericBinaryDocument.java
index 16d99f8..3cf4739 100644 (file)
@@ -1,53 +1,53 @@
-package javajs.api;\r
-\r
-import java.io.BufferedInputStream;\r
-import java.io.DataInputStream;\r
-import java.util.Map;\r
-\r
-\r
-import javajs.util.OC;\r
-import javajs.util.SB;\r
-\r
-public interface GenericBinaryDocument {\r
-\r
-  void setStream(GenericZipTools jzt, BufferedInputStream bis, boolean isBigEndian);\r
-\r
-  void setStreamData(DataInputStream dataInputStream, boolean isBigEndian);\r
-\r
-  long getPosition();\r
-\r
-  SB getAllDataFiles(String binaryFileList, String firstFile);\r
-\r
-  void getAllDataMapped(String replace, String string, Map<String, String> fileData);\r
-\r
-  int swapBytesI(int nx);\r
-\r
-  short swapBytesS(short s);\r
-\r
-  void seek(long i);\r
-\r
-  byte readByte() throws Exception;\r
-\r
-  int readInt() throws Exception;\r
-\r
-  int readIntLE() throws Exception;\r
-\r
-  long readLong() throws Exception;\r
-\r
-  float readFloat() throws Exception;\r
-\r
-  double readDouble() throws Exception;\r
-\r
-  short readShort() throws Exception;\r
-\r
-  int readUnsignedShort() throws Exception;\r
-\r
-  String readString(int i) throws Exception;\r
-\r
-  int readByteArray(byte[] b, int off, int len) throws Exception;\r
-\r
-  void close();\r
-\r
-  void setOutputChannel(OC out);\r
-\r
-}\r
+package javajs.api;
+
+import java.io.BufferedInputStream;
+import java.io.DataInputStream;
+import java.util.Map;
+
+
+import javajs.util.OC;
+import javajs.util.SB;
+
+public interface GenericBinaryDocument {
+
+  void setStream(GenericZipTools jzt, BufferedInputStream bis, boolean isBigEndian);
+
+  void setStreamData(DataInputStream dataInputStream, boolean isBigEndian);
+
+  long getPosition();
+
+  SB getAllDataFiles(String binaryFileList, String firstFile);
+
+  void getAllDataMapped(String replace, String string, Map<String, String> fileData);
+
+  int swapBytesI(int nx);
+
+  short swapBytesS(short s);
+
+  void seek(long i);
+
+  byte readByte() throws Exception;
+
+  int readInt() throws Exception;
+
+  int readIntLE() throws Exception;
+
+  long readLong() throws Exception;
+
+  float readFloat() throws Exception;
+
+  double readDouble() throws Exception;
+
+  short readShort() throws Exception;
+
+  int readUnsignedShort() throws Exception;
+
+  String readString(int i) throws Exception;
+
+  int readByteArray(byte[] b, int off, int len) throws Exception;
+
+  void close();
+
+  void setOutputChannel(OC out);
+
+}