initial support for EMBL file parsing.
[jalview.git] / src / jalview / datamodel / xdb / embl / BasePosition.java
diff --git a/src/jalview/datamodel/xdb/embl/BasePosition.java b/src/jalview/datamodel/xdb/embl/BasePosition.java
new file mode 100644 (file)
index 0000000..0b2dcbe
--- /dev/null
@@ -0,0 +1,30 @@
+package jalview.datamodel.xdb.embl;\r
+\r
+public class BasePosition {\r
+    String type;\r
+    String pos;\r
+    /**\r
+     * @return the pos\r
+     */\r
+    public String getPos() {\r
+        return pos;\r
+    }\r
+    /**\r
+     * @param pos the pos to set\r
+     */\r
+    public void setPos(String pos) {\r
+        this.pos = pos;\r
+    }\r
+    /**\r
+     * @return the type\r
+     */\r
+    public String getType() {\r
+        return type;\r
+    }\r
+    /**\r
+     * @param type the type to set\r
+     */\r
+    public void setType(String type) {\r
+        this.type = type;\r
+    }\r
+}\r