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