Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / src / javajs / api / GenericCifDataParser.java
index 4824b7d..8dc0091 100644 (file)
@@ -1,45 +1,45 @@
-package javajs.api;\r
-\r
-import java.io.BufferedReader;\r
-import java.util.Map;\r
-\r
-\r
-public interface GenericCifDataParser {\r
-\r
-  static final int NONE = -1;\r
-\r
-  String fullTrim(String str);\r
-\r
-  Map<String, Object> getAllCifData();\r
-\r
-  boolean getData() throws Exception;\r
-\r
-  String getField(int i);\r
-\r
-  int getFieldCount();\r
-\r
-  String getFileHeader();\r
-\r
-  String getLoopData(int i);\r
-\r
-  String getNextDataToken() throws Exception;\r
-\r
-  String getNextToken() throws Exception;\r
-\r
-  String getTokenPeeked();\r
-\r
-  int parseLoopParameters(String[] fields, int[] fieldOf, int[] propertyOf) throws Exception;\r
-\r
-  String peekToken() throws Exception;\r
-\r
-  String readLine();\r
-\r
-  GenericCifDataParser set(GenericLineReader reader, BufferedReader br);\r
-\r
-  String toUnicode(String data);\r
-\r
-  String skipLoop(boolean doReport) throws Exception;\r
-\r
-  String fixKey(String key);\r
-\r
-}\r
+package javajs.api;
+
+import java.io.BufferedReader;
+import java.util.Map;
+
+
+public interface GenericCifDataParser {
+
+  static final int NONE = -1;
+
+  String fullTrim(String str);
+
+  Map<String, Object> getAllCifData();
+
+  boolean getData() throws Exception;
+
+  String getField(int i);
+
+  int getFieldCount();
+
+  String getFileHeader();
+
+  String getLoopData(int i);
+
+  String getNextDataToken() throws Exception;
+
+  String getNextToken() throws Exception;
+
+  String getTokenPeeked();
+
+  int parseLoopParameters(String[] fields, int[] fieldOf, int[] propertyOf) throws Exception;
+
+  String peekToken() throws Exception;
+
+  String readLine();
+
+  GenericCifDataParser set(GenericLineReader reader, BufferedReader br);
+
+  String toUnicode(String data);
+
+  String skipLoop(boolean doReport) throws Exception;
+
+  String fixKey(String key);
+
+}