apply gpl development license
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeature.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1)
3  * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18  */
19 package jalview.datamodel.xdb.embl;
20
21 import java.util.Hashtable;
22 import java.util.Vector;
23
24 public class EmblFeature
25 {
26   String name;
27
28   Vector dbRefs;
29
30   Vector qualifiers;
31
32   Vector locations;
33
34   /**
35    * @return the dbRefs
36    */
37   public Vector getDbRefs()
38   {
39     return dbRefs;
40   }
41
42   /**
43    * @param dbRefs
44    *                the dbRefs to set
45    */
46   public void setDbRefs(Vector dbRefs)
47   {
48     this.dbRefs = dbRefs;
49   }
50
51   /**
52    * @return the locations
53    */
54   public Vector getLocations()
55   {
56     return locations;
57   }
58
59   /**
60    * @param locations
61    *                the locations to set
62    */
63   public void setLocations(Vector locations)
64   {
65     this.locations = locations;
66   }
67
68   /**
69    * @return the name
70    */
71   public String getName()
72   {
73     return name;
74   }
75
76   /**
77    * @param name
78    *                the name to set
79    */
80   public void setName(String name)
81   {
82     this.name = name;
83   }
84
85   /**
86    * @return the qualifiers
87    */
88   public Vector getQualifiers()
89   {
90     return qualifiers;
91   }
92
93   /**
94    * @param qualifiers
95    *                the qualifiers to set
96    */
97   public void setQualifiers(Vector qualifiers)
98   {
99     this.qualifiers = qualifiers;
100   }
101 }