update author list in license for (JAL-826)
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeature.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3  * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
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 of the License, or (at your option) any later version.
10  * 
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.datamodel.xdb.embl;
19
20 import java.util.Hashtable;
21 import java.util.Vector;
22
23 public class EmblFeature
24 {
25   String name;
26
27   Vector dbRefs;
28
29   Vector qualifiers;
30
31   Vector locations;
32
33   /**
34    * @return the dbRefs
35    */
36   public Vector getDbRefs()
37   {
38     return dbRefs;
39   }
40
41   /**
42    * @param dbRefs
43    *          the dbRefs to set
44    */
45   public void setDbRefs(Vector dbRefs)
46   {
47     this.dbRefs = dbRefs;
48   }
49
50   /**
51    * @return the locations
52    */
53   public Vector getLocations()
54   {
55     return locations;
56   }
57
58   /**
59    * @param locations
60    *          the locations to set
61    */
62   public void setLocations(Vector locations)
63   {
64     this.locations = locations;
65   }
66
67   /**
68    * @return the name
69    */
70   public String getName()
71   {
72     return name;
73   }
74
75   /**
76    * @param name
77    *          the name to set
78    */
79   public void setName(String name)
80   {
81     this.name = name;
82   }
83
84   /**
85    * @return the qualifiers
86    */
87   public Vector getQualifiers()
88   {
89     return qualifiers;
90   }
91
92   /**
93    * @param qualifiers
94    *          the qualifiers to set
95    */
96   public void setQualifiers(Vector qualifiers)
97   {
98     this.qualifiers = qualifiers;
99   }
100 }