0b2dcbeacce050b1e67131da88890b28b28d2d99
[jalview.git] / src / jalview / datamodel / xdb / embl / BasePosition.java
1 package jalview.datamodel.xdb.embl;\r
2 \r
3 public class BasePosition {\r
4     String type;\r
5     String pos;\r
6     /**\r
7      * @return the pos\r
8      */\r
9     public String getPos() {\r
10         return pos;\r
11     }\r
12     /**\r
13      * @param pos the pos to set\r
14      */\r
15     public void setPos(String pos) {\r
16         this.pos = pos;\r
17     }\r
18     /**\r
19      * @return the type\r
20      */\r
21     public String getType() {\r
22         return type;\r
23     }\r
24     /**\r
25      * @param type the type to set\r
26      */\r
27     public void setType(String type) {\r
28         this.type = type;\r
29     }\r
30 }\r