ascii type
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeature.java
1 package jalview.datamodel.xdb.embl;
2 import java.util.Hashtable;
3 import java.util.Vector;
4 public class EmblFeature {
5     String name;
6     Vector dbRefs;
7     Vector qualifiers;
8     Vector locations;
9     
10     /**
11      * @return the dbRefs
12      */
13     public Vector getDbRefs() {
14         return dbRefs;
15     }
16     /**
17      * @param dbRefs the dbRefs to set
18      */
19     public void setDbRefs(Vector dbRefs) {
20         this.dbRefs = dbRefs;
21     }
22     /**
23      * @return the locations
24      */
25     public Vector getLocations() {
26         return locations;
27     }
28     /**
29      * @param locations the locations to set
30      */
31     public void setLocations(Vector locations) {
32         this.locations = locations;
33     }
34     /**
35      * @return the name
36      */
37     public String getName() {
38         return name;
39     }
40     /**
41      * @param name the name to set
42      */
43     public void setName(String name) {
44         this.name = name;
45     }
46     /**
47      * @return the qualifiers
48      */
49     public Vector getQualifiers() {
50         return qualifiers;
51     }
52     /**
53      * @param qualifiers the qualifiers to set
54      */
55     public void setQualifiers(Vector qualifiers) {
56         this.qualifiers = qualifiers;
57     }
58 }