JAL-1620 version bump and release notes
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeature.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 import java.util.Vector;
24
25 public class EmblFeature
26 {
27   String name;
28
29   Vector dbRefs;
30
31   Vector qualifiers;
32
33   Vector locations;
34
35   /**
36    * @return the dbRefs
37    */
38   public Vector getDbRefs()
39   {
40     return dbRefs;
41   }
42
43   /**
44    * @param dbRefs
45    *          the dbRefs to set
46    */
47   public void setDbRefs(Vector dbRefs)
48   {
49     this.dbRefs = dbRefs;
50   }
51
52   /**
53    * @return the locations
54    */
55   public Vector getLocations()
56   {
57     return locations;
58   }
59
60   /**
61    * @param locations
62    *          the locations to set
63    */
64   public void setLocations(Vector locations)
65   {
66     this.locations = locations;
67   }
68
69   /**
70    * @return the name
71    */
72   public String getName()
73   {
74     return name;
75   }
76
77   /**
78    * @param name
79    *          the name to set
80    */
81   public void setName(String name)
82   {
83     this.name = name;
84   }
85
86   /**
87    * @return the qualifiers
88    */
89   public Vector getQualifiers()
90   {
91     return qualifiers;
92   }
93
94   /**
95    * @param qualifiers
96    *          the qualifiers to set
97    */
98   public void setQualifiers(Vector qualifiers)
99   {
100     this.qualifiers = qualifiers;
101   }
102 }