ascii type
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblSequence.java
1 package jalview.datamodel.xdb.embl;
2
3 public class EmblSequence {
4     String version;
5     String sequence;
6     String type;
7     /**
8      * @return the sequence
9      */
10     public String getSequence() {
11         return sequence;
12     }
13     /**
14      * @param sequence the sequence to set
15      */
16     public void setSequence(String sequence) {
17         this.sequence = sequence;
18     }
19     /**
20      * @return the type
21      */
22     public String getType() {
23         return type;
24     }
25     /**
26      * @param type the type to set
27      */
28     public void setType(String type) {
29         this.type = type;
30     }
31     /**
32      * @return the version
33      */
34     public String getVersion() {
35         return version;
36     }
37     /**
38      * @param version the version to set
39      */
40     public void setVersion(String version) {
41         this.version = version;
42     }
43 }