58b4c391259d57b4498d81afabd14d12d97cd629
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeature.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3  * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, 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.Vector;
21
22 public class EmblFeature
23 {
24   String name;
25
26   Vector dbRefs;
27
28   Vector qualifiers;
29
30   Vector locations;
31
32   /**
33    * @return the dbRefs
34    */
35   public Vector getDbRefs()
36   {
37     return dbRefs;
38   }
39
40   /**
41    * @param dbRefs
42    *          the dbRefs to set
43    */
44   public void setDbRefs(Vector dbRefs)
45   {
46     this.dbRefs = dbRefs;
47   }
48
49   /**
50    * @return the locations
51    */
52   public Vector getLocations()
53   {
54     return locations;
55   }
56
57   /**
58    * @param locations
59    *          the locations to set
60    */
61   public void setLocations(Vector locations)
62   {
63     this.locations = locations;
64   }
65
66   /**
67    * @return the name
68    */
69   public String getName()
70   {
71     return name;
72   }
73
74   /**
75    * @param name
76    *          the name to set
77    */
78   public void setName(String name)
79   {
80     this.name = name;
81   }
82
83   /**
84    * @return the qualifiers
85    */
86   public Vector getQualifiers()
87   {
88     return qualifiers;
89   }
90
91   /**
92    * @param qualifiers
93    *          the qualifiers to set
94    */
95   public void setQualifiers(Vector qualifiers)
96   {
97     this.qualifiers = qualifiers;
98   }
99 }