babc96d9f38f26d7688f51294556ce0730cb28f9
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeature.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)
3  * Copyright (C) 2008 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 import java.util.Hashtable;
21 import java.util.Vector;
22 public class EmblFeature {
23     String name;
24     Vector dbRefs;
25     Vector qualifiers;
26     Vector locations;
27     
28     /**
29      * @return the dbRefs
30      */
31     public Vector getDbRefs() {
32         return dbRefs;
33     }
34     /**
35      * @param dbRefs the dbRefs to set
36      */
37     public void setDbRefs(Vector dbRefs) {
38         this.dbRefs = dbRefs;
39     }
40     /**
41      * @return the locations
42      */
43     public Vector getLocations() {
44         return locations;
45     }
46     /**
47      * @param locations the locations to set
48      */
49     public void setLocations(Vector locations) {
50         this.locations = locations;
51     }
52     /**
53      * @return the name
54      */
55     public String getName() {
56         return name;
57     }
58     /**
59      * @param name the name to set
60      */
61     public void setName(String name) {
62         this.name = name;
63     }
64     /**
65      * @return the qualifiers
66      */
67     public Vector getQualifiers() {
68         return qualifiers;
69     }
70     /**
71      * @param qualifiers the qualifiers to set
72      */
73     public void setQualifiers(Vector qualifiers) {
74         this.qualifiers = qualifiers;
75     }
76 }