948fb311e5d2ed05cc359239d3995e0cb0eac242
[jalview.git] / src / jalview / datamodel / xdb / embl / Qualifier.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3  * Copyright (C) 2014 The Jalview Authors
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
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.datamodel.xdb.embl;
22
23 public class Qualifier
24 {
25   String name;
26
27   String[] values;
28
29   String[] evidence;
30
31   /**
32    * @return the name
33    */
34   public String getName()
35   {
36     return name;
37   }
38
39   /**
40    * @param name
41    *          the name to set
42    */
43   public void setName(String name)
44   {
45     this.name = name;
46   }
47
48   /**
49    * @return the values
50    */
51   public String[] getValues()
52   {
53     return values;
54   }
55
56   /**
57    * @param values
58    *          the values to set
59    */
60   public void setValues(String[] values)
61   {
62     this.values = values;
63   }
64
65   public void addEvidence(String qevidence)
66   {
67     if (evidence == null)
68     {
69       evidence = new String[1];
70     }
71     else
72     {
73       String[] temp = new String[evidence.length + 1];
74       System.arraycopy(evidence, 0, temp, 0, evidence.length);
75       evidence = temp;
76     }
77     evidence[evidence.length - 1] = qevidence;
78   }
79
80   public void addValues(String value)
81   {
82     if (values == null)
83     {
84       values = new String[1];
85     }
86     else
87     {
88       String[] temp = new String[values.length + 1];
89       System.arraycopy(values, 0, temp, 0, values.length);
90       values = temp;
91     }
92     values[values.length - 1] = value;
93   }
94
95   /**
96    * @return the evidence
97    */
98   public String[] getEvidence()
99   {
100     return evidence;
101   }
102
103   /**
104    * @param evidence
105    *          the evidence to set
106    */
107   public void setEvidence(String[] evidence)
108   {
109     this.evidence = evidence;
110   }
111 }