1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 52 (52) |
Complexity: 17 |
Complexity Density: 0.59 |
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
0 |
@Override... |
42 |
|
public String getName() |
43 |
|
{ |
44 |
0 |
return name; |
45 |
|
} |
46 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
47 |
0 |
@Override... |
48 |
|
public String getValue() |
49 |
|
{ |
50 |
0 |
return value == null ? defvalue : value; |
51 |
|
} |
52 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
0 |
@Override... |
54 |
|
public void setValue(String selectedItem) |
55 |
|
{ |
56 |
0 |
value = selectedItem; |
57 |
|
} |
58 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
0 |
@Override... |
60 |
|
public URL getFurtherDetails() |
61 |
|
{ |
62 |
0 |
return fdetails; |
63 |
|
} |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0 |
@Override... |
66 |
|
public boolean isRequired() |
67 |
|
{ |
68 |
0 |
return required; |
69 |
|
} |
70 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
71 |
0 |
@Override... |
72 |
|
public String getDescription() |
73 |
|
{ |
74 |
0 |
return description; |
75 |
|
} |
76 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
77 |
0 |
@Override... |
78 |
|
public List<String> getPossibleValues() |
79 |
|
{ |
80 |
0 |
return possibleVals; |
81 |
|
} |
82 |
|
|
|
|
| 0% |
Uncovered Elements: 19 (19) |
Complexity: 5 |
Complexity Density: 0.45 |
|
83 |
0 |
public Option(Option opt)... |
84 |
|
{ |
85 |
0 |
name = new String(opt.name); |
86 |
0 |
if (opt.value != null) |
87 |
0 |
value = new String(opt.value); |
88 |
0 |
if (opt.defvalue != null) |
89 |
0 |
defvalue = new String(opt.defvalue); |
90 |
0 |
if (opt.description != null) |
91 |
0 |
description = new String(opt.description); |
92 |
0 |
if (opt.possibleVals != null) |
93 |
|
{ |
94 |
0 |
possibleVals = (ArrayList<String>) opt.possibleVals.clone(); |
95 |
|
} |
96 |
0 |
required = opt.required; |
97 |
|
|
98 |
0 |
fdetails = opt.fdetails; |
99 |
|
} |
100 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
101 |
0 |
public Option()... |
102 |
|
{ |
103 |
|
} |
104 |
|
|
|
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 2 |
Complexity Density: 0.22 |
|
105 |
0 |
public Option(String name2, String description2, boolean isrequired,... |
106 |
|
String defValue, String value, Collection<String> possibleVals, |
107 |
|
URL fdetails) |
108 |
|
{ |
109 |
0 |
name = name2; |
110 |
0 |
description = description2; |
111 |
0 |
this.value = value; |
112 |
0 |
this.required = isrequired; |
113 |
0 |
this.defvalue = defValue; |
114 |
0 |
if (possibleVals != null) |
115 |
|
{ |
116 |
0 |
this.possibleVals = new ArrayList<String>(); |
117 |
0 |
this.possibleVals.addAll(possibleVals); |
118 |
|
} |
119 |
0 |
this.fdetails = fdetails; |
120 |
|
} |
121 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
122 |
0 |
@Override... |
123 |
|
public OptionI copy() |
124 |
|
{ |
125 |
0 |
Option opt = new Option(this); |
126 |
0 |
return opt; |
127 |
|
} |
128 |
|
} |