JAL-1620 version bump and release notes
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeatureLocElement.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.datamodel.xdb.embl;
22
23 public class EmblFeatureLocElement
24 {
25   String type;
26
27   String accession;
28
29   String version;
30
31   boolean complement;
32
33   BasePosition basePositions[];
34
35   /**
36    * @return the accession
37    */
38   public String getAccession()
39   {
40     return accession;
41   }
42
43   /**
44    * @param accession
45    *          the accession to set
46    */
47   public void setAccession(String accession)
48   {
49     this.accession = accession;
50   }
51
52   /**
53    * @return the basePositions
54    */
55   public BasePosition[] getBasePositions()
56   {
57     return basePositions;
58   }
59
60   /**
61    * @param basePositions
62    *          the basePositions to set
63    */
64   public void setBasePositions(BasePosition[] basePositions)
65   {
66     this.basePositions = basePositions;
67   }
68
69   /**
70    * @return the complement
71    */
72   public boolean isComplement()
73   {
74     return complement;
75   }
76
77   /**
78    * @param complement
79    *          the complement to set
80    */
81   public void setComplement(boolean complement)
82   {
83     this.complement = complement;
84   }
85
86   /**
87    * @return the type
88    */
89   public String getType()
90   {
91     return type;
92   }
93
94   /**
95    * @param type
96    *          the type to set
97    */
98   public void setType(String type)
99   {
100     this.type = type;
101   }
102
103   /**
104    * @return the version
105    */
106   public String getVersion()
107   {
108     return version;
109   }
110
111   /**
112    * @param version
113    *          the version to set
114    */
115   public void setVersion(String version)
116   {
117     this.version = version;
118   }
119 }