ascii type
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeatureLocElement.java
1 package jalview.datamodel.xdb.embl;
2
3 public class EmblFeatureLocElement {
4         String type;
5         String accession;
6         String version;
7         boolean complement;
8         BasePosition basePositions[]; 
9         /**
10          * @return the accession
11          */
12         public String getAccession() {
13             return accession;
14         }
15         /**
16          * @param accession the accession to set
17          */
18         public void setAccession(String accession) {
19             this.accession = accession;
20         }
21         /**
22          * @return the basePositions
23          */
24         public BasePosition[] getBasePositions() {
25             return basePositions;
26         }
27         /**
28          * @param basePositions the basePositions to set
29          */
30         public void setBasePositions(BasePosition[] basePositions) {
31             this.basePositions = basePositions;
32         }
33         /**
34          * @return the complement
35          */
36         public boolean isComplement() {
37             return complement;
38         }
39         /**
40          * @param complement the complement to set
41          */
42         public void setComplement(boolean complement) {
43             this.complement = complement;
44         }
45         /**
46          * @return the type
47          */
48         public String getType() {
49             return type;
50         }
51         /**
52          * @param type the type to set
53          */
54         public void setType(String type) {
55             this.type = type;
56         }
57         /**
58          * @return the version
59          */
60         public String getVersion() {
61             return version;
62         }
63         /**
64          * @param version the version to set
65          */
66         public void setVersion(String version) {
67             this.version = version;
68         }
69     }
70