653359f3d11ec226855361f795f9620800ba9afe
[jalview.git] / src / jalview / ws / params / simple / Option.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ 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.ws.params.simple;
22
23 import jalview.ws.params.OptionI;
24
25 import java.net.URL;
26 import java.util.ArrayList;
27 import java.util.Collection;
28 import java.util.List;
29
30 public class Option implements OptionI
31 {
32
33   String name, value, defvalue, description;
34
35   ArrayList<String> possibleVals = new ArrayList<String>();
36
37   boolean required;
38
39   URL fdetails;
40
41   @Override
42   public String getName()
43   {
44     return name;
45   }
46
47   @Override
48   public String getValue()
49   {
50     return value == null ? defvalue : value;
51   }
52
53   @Override
54   public void setValue(String selectedItem)
55   {
56     value = selectedItem;
57   }
58
59   @Override
60   public URL getFurtherDetails()
61   {
62     return fdetails;
63   }
64
65   @Override
66   public boolean isRequired()
67   {
68     return required;
69   }
70
71   @Override
72   public String getDescription()
73   {
74     return description;
75   }
76
77   @Override
78   public List<String> getPossibleValues()
79   {
80     return possibleVals;
81   }
82
83   public Option(Option opt)
84   {
85     name = new String(opt.name);
86     if (opt.value != null)
87       value = new String(opt.value);
88     if (opt.defvalue != null)
89       defvalue = new String(opt.defvalue);
90     if (opt.description != null)
91       description = new String(opt.description);
92     if (opt.possibleVals != null)
93     {
94       possibleVals = (ArrayList<String>) opt.possibleVals.clone();
95     }
96     required = opt.required;
97     // URLs are singletons - so we copy by reference. nasty but true.
98     fdetails = opt.fdetails;
99   }
100
101   public Option()
102   {
103   }
104
105   public Option(String name2, String description2, boolean isrequired,
106           String defValue, String value, Collection<String> possibleVals,
107           URL fdetails)
108   {
109     name = name2;
110     description = description2;
111     this.value = value;
112     this.required = isrequired;
113     this.defvalue = defValue;
114     if (possibleVals != null)
115     {
116       this.possibleVals = new ArrayList<String>();
117       this.possibleVals.addAll(possibleVals);
118     }
119     this.fdetails = fdetails;
120   }
121
122   @Override
123   public OptionI copy()
124   {
125     Option opt = new Option(this);
126     return opt;
127   }
128 }