1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.viewmodel.styles; |
22 |
|
|
23 |
|
import java.awt.Color; |
24 |
|
|
25 |
|
import jalview.api.ViewStyleI; |
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
@author |
34 |
|
|
35 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (256) |
Complexity: 93 |
Complexity Density: 0.57 |
|
36 |
|
public class ViewStyle implements ViewStyleI |
37 |
|
{ |
38 |
|
private boolean abovePIDThreshold = false; |
39 |
|
|
40 |
|
int charHeight; |
41 |
|
|
42 |
|
int charWidth; |
43 |
|
|
44 |
|
int idWidth = -1; |
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
private boolean colourAppliesToAllGroups; |
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
boolean centreColumnLabels = false; |
55 |
|
|
56 |
|
private boolean showdbrefs; |
57 |
|
|
58 |
|
private boolean shownpfeats; |
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
|
65 |
|
private boolean colourByReferenceSeq = false; |
66 |
|
|
67 |
|
boolean conservationColourSelected = false; |
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
private boolean displayReferenceSeq = false; |
73 |
|
|
74 |
|
private int increment; |
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
boolean renderGaps = true; |
80 |
|
|
81 |
|
private boolean rightAlignIds = false; |
82 |
|
|
83 |
|
boolean scaleAboveWrapped = false; |
84 |
|
|
85 |
|
boolean scaleLeftWrapped = true; |
86 |
|
|
87 |
|
boolean scaleRightWrapped = true; |
88 |
|
|
89 |
|
boolean seqNameItalics; |
90 |
|
|
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
private boolean showAnnotation = true; |
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
boolean showBoxes = true; |
100 |
|
|
101 |
|
|
102 |
|
|
103 |
|
|
104 |
|
boolean showColourText = false; |
105 |
|
|
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
boolean showHiddenMarkers = true; |
110 |
|
|
111 |
|
|
112 |
|
|
113 |
|
|
114 |
|
boolean showJVSuffix = true; |
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
|
119 |
|
boolean showSeqFeaturesHeight; |
120 |
|
|
121 |
|
|
122 |
|
|
123 |
|
|
124 |
|
boolean showSequenceFeatures = false; |
125 |
|
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
boolean showText = true; |
130 |
|
|
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
protected boolean showUnconserved = false; |
135 |
|
|
136 |
|
Color textColour = Color.black; |
137 |
|
|
138 |
|
Color textColour2 = Color.white; |
139 |
|
|
140 |
|
|
141 |
|
|
142 |
|
|
143 |
|
int threshold; |
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
148 |
|
int thresholdTextColour = 0; |
149 |
|
|
150 |
|
|
151 |
|
|
152 |
|
|
153 |
|
boolean upperCasebold = false; |
154 |
|
|
155 |
|
|
156 |
|
|
157 |
|
|
158 |
|
private String fontName; |
159 |
|
|
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
private int fontSize; |
164 |
|
|
165 |
|
|
166 |
|
|
167 |
|
|
168 |
|
|
169 |
|
private boolean scaleProteinAsCdna = true; |
170 |
|
|
171 |
|
|
172 |
|
|
173 |
|
|
174 |
|
|
175 |
|
private boolean proteinFontAsCdna = true; |
176 |
|
|
177 |
|
|
178 |
|
|
179 |
|
|
180 |
|
@param |
181 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (43) |
Complexity: 1 |
Complexity Density: 0.02 |
|
182 |
232 |
public ViewStyle(ViewStyleI vs)... |
183 |
|
{ |
184 |
232 |
setAbovePIDThreshold(vs.getAbovePIDThreshold()); |
185 |
232 |
setCentreColumnLabels(vs.isCentreColumnLabels()); |
186 |
232 |
setCharHeight(vs.getCharHeight()); |
187 |
232 |
setCharWidth(vs.getCharWidth()); |
188 |
232 |
setColourAppliesToAllGroups(vs.getColourAppliesToAllGroups()); |
189 |
232 |
setColourByReferenceSeq(vs.isColourByReferenceSeq()); |
190 |
232 |
setColourText(vs.getColourText()); |
191 |
232 |
setConservationColourSelected(vs.isConservationColourSelected()); |
192 |
232 |
setConservationSelected(vs.getConservationSelected()); |
193 |
232 |
setDisplayReferenceSeq(vs.isDisplayReferenceSeq()); |
194 |
232 |
setFontName(vs.getFontName()); |
195 |
232 |
setFontSize(vs.getFontSize()); |
196 |
232 |
setFontStyle(vs.getFontStyle()); |
197 |
232 |
setIdWidth(vs.getIdWidth()); |
198 |
232 |
setIncrement(vs.getIncrement()); |
199 |
232 |
setRenderGaps(vs.isRenderGaps()); |
200 |
232 |
setRightAlignIds(vs.isRightAlignIds()); |
201 |
232 |
setScaleAboveWrapped(vs.getScaleAboveWrapped()); |
202 |
232 |
setScaleLeftWrapped(vs.getScaleLeftWrapped()); |
203 |
232 |
setScaleProteinAsCdna(vs.isScaleProteinAsCdna()); |
204 |
232 |
setProteinFontAsCdna(vs.isProteinFontAsCdna()); |
205 |
232 |
setScaleRightWrapped(vs.getScaleRightWrapped()); |
206 |
232 |
setSeqNameItalics(vs.isSeqNameItalics()); |
207 |
232 |
setShowAnnotation(vs.isShowAnnotation()); |
208 |
232 |
setShowBoxes(vs.getShowBoxes()); |
209 |
232 |
setShowColourText(vs.isShowColourText()); |
210 |
232 |
setShowDBRefs(vs.isShowDBRefs()); |
211 |
232 |
setShowHiddenMarkers(vs.getShowHiddenMarkers()); |
212 |
232 |
setShowJVSuffix(vs.getShowJVSuffix()); |
213 |
232 |
setShowNPFeats(vs.isShowNPFeats()); |
214 |
232 |
setShowSequenceFeaturesHeight(vs.isShowSequenceFeaturesHeight()); |
215 |
232 |
setShowSequenceFeatures(vs.isShowSequenceFeatures()); |
216 |
232 |
setShowComplementFeatures(vs.isShowComplementFeatures()); |
217 |
232 |
setShowComplementFeaturesOnTop(vs.isShowComplementFeaturesOnTop()); |
218 |
232 |
setShowText(vs.getShowText()); |
219 |
232 |
setShowUnconserved(vs.getShowUnconserved()); |
220 |
232 |
setTextColour(vs.getTextColour()); |
221 |
232 |
setTextColour2(vs.getTextColour2()); |
222 |
232 |
setThreshold(vs.getThreshold()); |
223 |
232 |
setThresholdTextColour(vs.getThresholdTextColour()); |
224 |
232 |
setUpperCasebold(vs.isUpperCasebold()); |
225 |
232 |
setWrapAlignment(vs.getWrapAlignment()); |
226 |
232 |
setWrappedWidth(vs.getWrappedWidth()); |
227 |
|
|
228 |
|
} |
229 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
230 |
510 |
public ViewStyle()... |
231 |
|
{ |
232 |
|
} |
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 3 |
Complexity Density: 0.38 |
|
237 |
48 |
@Override... |
238 |
|
public boolean equals(Object other) |
239 |
|
{ |
240 |
48 |
if (other == null || !(other instanceof ViewStyle)) |
241 |
|
{ |
242 |
2 |
return false; |
243 |
|
} |
244 |
46 |
ViewStyle vs = (ViewStyle) other; |
245 |
|
|
246 |
46 |
boolean match = (getAbovePIDThreshold() == vs.getAbovePIDThreshold() |
247 |
|
&& isCentreColumnLabels() == vs.isCentreColumnLabels() |
248 |
|
&& getCharHeight() == vs.getCharHeight() |
249 |
|
&& getCharWidth() == vs.getCharWidth() |
250 |
|
&& getColourAppliesToAllGroups() == vs |
251 |
|
.getColourAppliesToAllGroups() |
252 |
|
&& isColourByReferenceSeq() == vs.isColourByReferenceSeq() |
253 |
|
&& getColourText() == vs.getColourText() |
254 |
|
&& isConservationColourSelected() == vs |
255 |
|
.isConservationColourSelected() |
256 |
|
&& getConservationSelected() == vs.getConservationSelected() |
257 |
|
&& isDisplayReferenceSeq() == vs.isDisplayReferenceSeq() |
258 |
|
&& getFontSize() == vs.getFontSize() |
259 |
|
&& getFontStyle() == vs.getFontStyle() |
260 |
|
&& getIdWidth() == vs.getIdWidth() |
261 |
|
&& getIncrement() == vs.getIncrement() |
262 |
|
&& isRenderGaps() == vs.isRenderGaps() |
263 |
|
&& isRightAlignIds() == vs.isRightAlignIds() |
264 |
|
&& getScaleAboveWrapped() == vs.getScaleAboveWrapped() |
265 |
|
&& getScaleLeftWrapped() == vs.getScaleLeftWrapped() |
266 |
|
&& isScaleProteinAsCdna() == vs.isScaleProteinAsCdna() |
267 |
|
&& isProteinFontAsCdna() == vs.isProteinFontAsCdna() |
268 |
|
&& getScaleRightWrapped() == vs.getScaleRightWrapped() |
269 |
|
&& isSeqNameItalics() == vs.isSeqNameItalics() |
270 |
|
&& isShowAnnotation() == vs.isShowAnnotation() |
271 |
|
&& getShowBoxes() == vs.getShowBoxes() |
272 |
|
&& isShowColourText() == vs.isShowColourText() |
273 |
|
&& isShowDBRefs() == vs.isShowDBRefs() |
274 |
|
&& getShowHiddenMarkers() == vs.getShowHiddenMarkers() |
275 |
|
&& getShowJVSuffix() == vs.getShowJVSuffix() |
276 |
|
&& isShowNPFeats() == vs.isShowNPFeats() |
277 |
|
&& isShowSequenceFeaturesHeight() == vs |
278 |
|
.isShowSequenceFeaturesHeight() |
279 |
|
&& isShowSequenceFeatures() == vs.isShowSequenceFeatures() |
280 |
|
&& isShowComplementFeatures() == vs.isShowComplementFeatures() |
281 |
|
&& isShowComplementFeaturesOnTop() == vs |
282 |
|
.isShowComplementFeaturesOnTop() |
283 |
|
&& getShowText() == vs.getShowText() |
284 |
|
&& getShowUnconserved() == vs.getShowUnconserved() |
285 |
|
&& getThreshold() == vs.getThreshold() |
286 |
|
&& getThresholdTextColour() == vs.getThresholdTextColour() |
287 |
|
&& isUpperCasebold() == vs.isUpperCasebold() |
288 |
|
&& getWrapAlignment() == vs.getWrapAlignment() |
289 |
|
&& getWrappedWidth() == vs.getWrappedWidth()); |
290 |
|
|
291 |
|
|
292 |
|
|
293 |
|
|
294 |
46 |
match = match && String.valueOf(getFontName()) |
295 |
|
.equals(String.valueOf(vs.getFontName())); |
296 |
46 |
match = match && String.valueOf(getTextColour()) |
297 |
|
.equals(String.valueOf(vs.getTextColour())); |
298 |
46 |
match = match && String.valueOf(getTextColour2()) |
299 |
|
.equals(String.valueOf(vs.getTextColour2())); |
300 |
46 |
return match; |
301 |
|
|
302 |
|
} |
303 |
|
|
304 |
|
|
305 |
|
|
306 |
|
|
307 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (25) |
Complexity: 1 |
Complexity Density: 0.04 |
|
308 |
84 |
@Override... |
309 |
|
public int hashCode() |
310 |
|
{ |
311 |
|
|
312 |
|
|
313 |
|
|
314 |
84 |
int hash = 0; |
315 |
84 |
int m = 1; |
316 |
|
|
317 |
84 |
hash += m++ * Boolean.valueOf(this.abovePIDThreshold).hashCode(); |
318 |
84 |
hash += m++ * Boolean.valueOf(this.centreColumnLabels).hashCode(); |
319 |
84 |
hash += m++ * Boolean.valueOf(this.colourAppliesToAllGroups).hashCode(); |
320 |
84 |
hash += m++ * Boolean.valueOf(this.displayReferenceSeq).hashCode(); |
321 |
84 |
hash += m++ * Boolean.valueOf(this.renderGaps).hashCode(); |
322 |
84 |
hash += m++ * Boolean.valueOf(this.rightAlignIds).hashCode(); |
323 |
84 |
hash += m++ * Boolean.valueOf(this.scaleProteinAsCdna).hashCode(); |
324 |
84 |
hash += m++ * Boolean.valueOf(this.scaleRightWrapped).hashCode(); |
325 |
84 |
hash += m++ * Boolean.valueOf(this.seqNameItalics).hashCode(); |
326 |
84 |
hash += m++ * Boolean.valueOf(this.showAnnotation).hashCode(); |
327 |
84 |
hash += m++ * Boolean.valueOf(this.showBoxes).hashCode(); |
328 |
84 |
hash += m++ * Boolean.valueOf(this.showdbrefs).hashCode(); |
329 |
84 |
hash += m++ * Boolean.valueOf(this.showJVSuffix).hashCode(); |
330 |
84 |
hash += m++ * Boolean.valueOf(this.showSequenceFeatures).hashCode(); |
331 |
84 |
hash += m++ * Boolean.valueOf(this.showUnconserved).hashCode(); |
332 |
84 |
hash += m++ * Boolean.valueOf(this.wrapAlignment).hashCode(); |
333 |
84 |
hash += m++ * this.charHeight; |
334 |
84 |
hash += m++ * this.charWidth; |
335 |
84 |
hash += m++ * fontSize; |
336 |
84 |
hash += m++ * fontStyle; |
337 |
84 |
hash += m++ * idWidth; |
338 |
84 |
hash += String.valueOf(this.fontName).hashCode(); |
339 |
84 |
return hash; |
340 |
|
} |
341 |
|
|
342 |
|
|
343 |
|
@return |
344 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
345 |
250 |
@Override... |
346 |
|
public boolean isUpperCasebold() |
347 |
|
{ |
348 |
250 |
return upperCasebold; |
349 |
|
} |
350 |
|
|
351 |
|
|
352 |
|
@param |
353 |
|
|
354 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
355 |
232 |
@Override... |
356 |
|
public void setUpperCasebold(boolean upperCasebold) |
357 |
|
{ |
358 |
232 |
this.upperCasebold = upperCasebold; |
359 |
|
} |
360 |
|
|
361 |
|
|
362 |
|
|
363 |
|
|
364 |
|
boolean wrapAlignment = false; |
365 |
|
|
366 |
|
|
367 |
|
|
368 |
|
|
369 |
|
int wrappedWidth; |
370 |
|
|
371 |
|
private int fontStyle; |
372 |
|
|
373 |
|
private boolean showComplementFeatures; |
374 |
|
|
375 |
|
private boolean showComplementFeaturesOnTop; |
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
@return |
381 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
382 |
1202 |
@Override... |
383 |
|
public boolean getAbovePIDThreshold() |
384 |
|
{ |
385 |
1202 |
return abovePIDThreshold; |
386 |
|
} |
387 |
|
|
388 |
|
|
389 |
|
|
390 |
|
|
391 |
|
@return |
392 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
393 |
116332 |
@Override... |
394 |
|
public int getCharHeight() |
395 |
|
{ |
396 |
116332 |
return charHeight; |
397 |
|
} |
398 |
|
|
399 |
|
|
400 |
|
|
401 |
|
|
402 |
|
@return |
403 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
404 |
1505118 |
@Override... |
405 |
|
public int getCharWidth() |
406 |
|
{ |
407 |
1505124 |
return charWidth; |
408 |
|
} |
409 |
|
|
410 |
|
|
411 |
|
|
412 |
|
|
413 |
|
@return |
414 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
415 |
1274 |
@Override... |
416 |
|
public boolean getColourAppliesToAllGroups() |
417 |
|
{ |
418 |
1274 |
return colourAppliesToAllGroups; |
419 |
|
} |
420 |
|
|
421 |
|
|
422 |
|
|
423 |
|
|
424 |
|
@return |
425 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
426 |
380191 |
@Override... |
427 |
|
public boolean getColourText() |
428 |
|
{ |
429 |
380191 |
return showColourText; |
430 |
|
} |
431 |
|
|
432 |
|
|
433 |
|
|
434 |
|
|
435 |
|
@return |
436 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
437 |
1344 |
@Override... |
438 |
|
public boolean getConservationSelected() |
439 |
|
{ |
440 |
1344 |
return conservationColourSelected; |
441 |
|
} |
442 |
|
|
443 |
|
|
444 |
|
|
445 |
|
|
446 |
|
@return |
447 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
448 |
296 |
@Override... |
449 |
|
public int getIncrement() |
450 |
|
{ |
451 |
296 |
return increment; |
452 |
|
} |
453 |
|
|
454 |
|
|
455 |
|
|
456 |
|
|
457 |
|
@return |
458 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
459 |
1224 |
@Override... |
460 |
|
public boolean getScaleAboveWrapped() |
461 |
|
{ |
462 |
1224 |
return scaleAboveWrapped; |
463 |
|
} |
464 |
|
|
465 |
|
|
466 |
|
|
467 |
|
|
468 |
|
@return |
469 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
470 |
1633 |
@Override... |
471 |
|
public boolean getScaleLeftWrapped() |
472 |
|
{ |
473 |
1633 |
return scaleLeftWrapped; |
474 |
|
} |
475 |
|
|
476 |
|
|
477 |
|
|
478 |
|
|
479 |
|
@return |
480 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
481 |
2473 |
@Override... |
482 |
|
public boolean getScaleRightWrapped() |
483 |
|
{ |
484 |
2473 |
return scaleRightWrapped; |
485 |
|
} |
486 |
|
|
487 |
|
|
488 |
|
|
489 |
|
|
490 |
|
@return |
491 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
492 |
413252 |
@Override... |
493 |
|
public boolean getShowBoxes() |
494 |
|
{ |
495 |
413254 |
return showBoxes; |
496 |
|
} |
497 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
498 |
8307 |
@Override... |
499 |
|
public boolean getShowHiddenMarkers() |
500 |
|
{ |
501 |
8307 |
return showHiddenMarkers; |
502 |
|
} |
503 |
|
|
504 |
|
|
505 |
|
|
506 |
|
|
507 |
|
@return |
508 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
509 |
52899 |
@Override... |
510 |
|
public boolean getShowJVSuffix() |
511 |
|
{ |
512 |
52899 |
return showJVSuffix; |
513 |
|
} |
514 |
|
|
515 |
|
|
516 |
|
|
517 |
|
|
518 |
|
@return |
519 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
520 |
380813 |
@Override... |
521 |
|
public boolean getShowText() |
522 |
|
{ |
523 |
380813 |
return showText; |
524 |
|
} |
525 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
526 |
379848 |
@Override... |
527 |
|
public boolean getShowUnconserved() |
528 |
|
{ |
529 |
379848 |
return showUnconserved; |
530 |
|
} |
531 |
|
|
532 |
|
|
533 |
|
@return |
534 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
535 |
726637 |
@Override... |
536 |
|
public Color getTextColour() |
537 |
|
{ |
538 |
726637 |
return textColour; |
539 |
|
} |
540 |
|
|
541 |
|
|
542 |
|
@return |
543 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
544 |
286 |
@Override... |
545 |
|
public Color getTextColour2() |
546 |
|
{ |
547 |
286 |
return textColour2; |
548 |
|
} |
549 |
|
|
550 |
|
|
551 |
|
|
552 |
|
|
553 |
|
@return |
554 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
555 |
254 |
@Override... |
556 |
|
public int getThreshold() |
557 |
|
{ |
558 |
254 |
return threshold; |
559 |
|
} |
560 |
|
|
561 |
|
|
562 |
|
@return |
563 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
564 |
380135 |
@Override... |
565 |
|
public int getThresholdTextColour() |
566 |
|
{ |
567 |
380135 |
return thresholdTextColour; |
568 |
|
} |
569 |
|
|
570 |
|
|
571 |
|
|
572 |
|
|
573 |
|
@return |
574 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
575 |
32570 |
@Override... |
576 |
|
public boolean getWrapAlignment() |
577 |
|
{ |
578 |
32570 |
return wrapAlignment; |
579 |
|
} |
580 |
|
|
581 |
|
|
582 |
|
|
583 |
|
|
584 |
|
@return |
585 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
586 |
248 |
@Override... |
587 |
|
public int getWrappedWidth() |
588 |
|
{ |
589 |
248 |
return wrappedWidth; |
590 |
|
} |
591 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
592 |
315 |
@Override... |
593 |
|
public boolean isColourByReferenceSeq() |
594 |
|
{ |
595 |
315 |
return colourByReferenceSeq; |
596 |
|
} |
597 |
|
|
598 |
|
|
599 |
|
@return |
600 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
601 |
392 |
@Override... |
602 |
|
public boolean isConservationColourSelected() |
603 |
|
{ |
604 |
392 |
return conservationColourSelected; |
605 |
|
} |
606 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
607 |
532 |
@Override... |
608 |
|
public boolean isDisplayReferenceSeq() |
609 |
|
{ |
610 |
532 |
return displayReferenceSeq; |
611 |
|
} |
612 |
|
|
613 |
|
|
614 |
|
@return |
615 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
616 |
3891 |
@Override... |
617 |
|
public boolean isRenderGaps() |
618 |
|
{ |
619 |
3891 |
return renderGaps; |
620 |
|
} |
621 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
622 |
19077 |
@Override... |
623 |
|
public boolean isRightAlignIds() |
624 |
|
{ |
625 |
19077 |
return rightAlignIds; |
626 |
|
} |
627 |
|
|
628 |
|
|
629 |
|
@return |
630 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
631 |
3644 |
@Override... |
632 |
|
public boolean isSeqNameItalics() |
633 |
|
{ |
634 |
3644 |
return seqNameItalics; |
635 |
|
} |
636 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
637 |
5213 |
@Override... |
638 |
|
public boolean isShowAnnotation() |
639 |
|
{ |
640 |
5213 |
return showAnnotation; |
641 |
|
} |
642 |
|
|
643 |
|
|
644 |
|
@return |
645 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
646 |
946 |
@Override... |
647 |
|
public boolean isShowColourText() |
648 |
|
{ |
649 |
946 |
return showColourText; |
650 |
|
} |
651 |
|
|
652 |
|
|
653 |
|
@return |
654 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
655 |
266 |
@Override... |
656 |
|
public boolean isShowSequenceFeaturesHeight() |
657 |
|
{ |
658 |
266 |
return showSeqFeaturesHeight; |
659 |
|
} |
660 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
661 |
414813 |
@Override... |
662 |
|
public boolean isShowSequenceFeatures() |
663 |
|
{ |
664 |
414882 |
return showSequenceFeatures; |
665 |
|
} |
666 |
|
|
667 |
|
|
668 |
|
|
669 |
|
|
670 |
|
|
671 |
|
@param |
672 |
|
|
673 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
674 |
326 |
@Override... |
675 |
|
public void setAbovePIDThreshold(boolean b) |
676 |
|
{ |
677 |
326 |
abovePIDThreshold = b; |
678 |
|
} |
679 |
|
|
680 |
|
|
681 |
|
|
682 |
|
|
683 |
|
@param |
684 |
|
|
685 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
686 |
828 |
@Override... |
687 |
|
public void setCharHeight(int h) |
688 |
|
{ |
689 |
828 |
this.charHeight = h; |
690 |
|
} |
691 |
|
|
692 |
|
|
693 |
|
|
694 |
|
|
695 |
|
@param |
696 |
|
|
697 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
698 |
831 |
@Override... |
699 |
|
public void setCharWidth(int w) |
700 |
|
{ |
701 |
831 |
this.charWidth = w; |
702 |
|
} |
703 |
|
|
704 |
|
|
705 |
|
@param |
706 |
|
|
707 |
|
|
708 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
709 |
925 |
@Override... |
710 |
|
public void setColourAppliesToAllGroups(boolean b) |
711 |
|
{ |
712 |
925 |
colourAppliesToAllGroups = b; |
713 |
|
} |
714 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
715 |
242 |
@Override... |
716 |
|
public void setColourByReferenceSeq(boolean colourByReferenceSeq) |
717 |
|
{ |
718 |
242 |
this.colourByReferenceSeq = colourByReferenceSeq; |
719 |
|
} |
720 |
|
|
721 |
|
|
722 |
|
|
723 |
|
|
724 |
|
@param |
725 |
|
|
726 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
727 |
317 |
@Override... |
728 |
|
public void setColourText(boolean state) |
729 |
|
{ |
730 |
317 |
showColourText = state; |
731 |
|
} |
732 |
|
|
733 |
|
|
734 |
|
@param |
735 |
|
|
736 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
737 |
232 |
@Override... |
738 |
|
public void setConservationColourSelected( |
739 |
|
boolean conservationColourSelected) |
740 |
|
{ |
741 |
232 |
this.conservationColourSelected = conservationColourSelected; |
742 |
|
} |
743 |
|
|
744 |
|
|
745 |
|
|
746 |
|
|
747 |
|
@param |
748 |
|
|
749 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
750 |
325 |
@Override... |
751 |
|
public void setConservationSelected(boolean b) |
752 |
|
{ |
753 |
325 |
conservationColourSelected = b; |
754 |
|
} |
755 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
756 |
242 |
@Override... |
757 |
|
public void setDisplayReferenceSeq(boolean displayReferenceSeq) |
758 |
|
{ |
759 |
242 |
this.displayReferenceSeq = displayReferenceSeq; |
760 |
|
} |
761 |
|
|
762 |
|
|
763 |
|
|
764 |
|
@param |
765 |
|
|
766 |
|
|
767 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
768 |
317 |
@Override... |
769 |
|
public void setIncrement(int inc) |
770 |
|
{ |
771 |
317 |
increment = inc; |
772 |
|
} |
773 |
|
|
774 |
|
|
775 |
|
|
776 |
|
|
777 |
|
@param |
778 |
|
|
779 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
780 |
317 |
@Override... |
781 |
|
public void setRenderGaps(boolean state) |
782 |
|
{ |
783 |
317 |
renderGaps = state; |
784 |
|
} |
785 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
786 |
825 |
@Override... |
787 |
|
public void setRightAlignIds(boolean rightAlignIds) |
788 |
|
{ |
789 |
825 |
this.rightAlignIds = rightAlignIds; |
790 |
|
} |
791 |
|
|
792 |
|
|
793 |
|
|
794 |
|
|
795 |
|
@param |
796 |
|
|
797 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
798 |
241 |
@Override... |
799 |
|
public void setScaleAboveWrapped(boolean b) |
800 |
|
{ |
801 |
241 |
scaleAboveWrapped = b; |
802 |
|
} |
803 |
|
|
804 |
|
|
805 |
|
|
806 |
|
|
807 |
|
@param |
808 |
|
|
809 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
810 |
243 |
@Override... |
811 |
|
public void setScaleLeftWrapped(boolean b) |
812 |
|
{ |
813 |
243 |
scaleLeftWrapped = b; |
814 |
|
} |
815 |
|
|
816 |
|
|
817 |
|
|
818 |
|
|
819 |
|
@param |
820 |
|
|
821 |
|
|
822 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
823 |
241 |
@Override... |
824 |
|
public void setScaleRightWrapped(boolean b) |
825 |
|
{ |
826 |
241 |
scaleRightWrapped = b; |
827 |
|
} |
828 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
829 |
740 |
@Override... |
830 |
|
public void setSeqNameItalics(boolean italics) |
831 |
|
{ |
832 |
740 |
seqNameItalics = italics; |
833 |
|
} |
834 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
835 |
912 |
@Override... |
836 |
|
public void setShowAnnotation(boolean b) |
837 |
|
{ |
838 |
912 |
showAnnotation = b; |
839 |
|
} |
840 |
|
|
841 |
|
|
842 |
|
|
843 |
|
|
844 |
|
@param |
845 |
|
|
846 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
847 |
317 |
@Override... |
848 |
|
public void setShowBoxes(boolean state) |
849 |
|
{ |
850 |
317 |
showBoxes = state; |
851 |
|
} |
852 |
|
|
853 |
|
|
854 |
|
@param |
855 |
|
|
856 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
857 |
232 |
@Override... |
858 |
|
public void setShowColourText(boolean showColourText) |
859 |
|
{ |
860 |
232 |
this.showColourText = showColourText; |
861 |
|
} |
862 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
863 |
232 |
@Override... |
864 |
|
public void setShowHiddenMarkers(boolean show) |
865 |
|
{ |
866 |
232 |
showHiddenMarkers = show; |
867 |
|
} |
868 |
|
|
869 |
|
|
870 |
|
|
871 |
|
|
872 |
|
@param |
873 |
|
|
874 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
875 |
826 |
@Override... |
876 |
|
public void setShowJVSuffix(boolean b) |
877 |
|
{ |
878 |
826 |
showJVSuffix = b; |
879 |
|
} |
880 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
881 |
232 |
@Override... |
882 |
|
public void setShowSequenceFeaturesHeight(boolean selected) |
883 |
|
{ |
884 |
232 |
showSeqFeaturesHeight = selected; |
885 |
|
|
886 |
|
} |
887 |
|
|
888 |
|
|
889 |
|
|
890 |
|
|
891 |
|
@param |
892 |
|
|
893 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
894 |
373 |
@Override... |
895 |
|
public void setShowSequenceFeatures(boolean b) |
896 |
|
{ |
897 |
373 |
showSequenceFeatures = b; |
898 |
|
} |
899 |
|
|
900 |
|
|
901 |
|
|
902 |
|
|
903 |
|
@param |
904 |
|
|
905 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
906 |
317 |
@Override... |
907 |
|
public void setShowText(boolean state) |
908 |
|
{ |
909 |
317 |
showText = state; |
910 |
|
} |
911 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
912 |
825 |
@Override... |
913 |
|
public void setShowUnconserved(boolean showunconserved) |
914 |
|
{ |
915 |
825 |
showUnconserved = showunconserved; |
916 |
|
} |
917 |
|
|
918 |
|
|
919 |
|
@param |
920 |
|
|
921 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
922 |
317 |
@Override... |
923 |
|
public void setTextColour(Color textColour) |
924 |
|
{ |
925 |
317 |
this.textColour = textColour; |
926 |
|
} |
927 |
|
|
928 |
|
|
929 |
|
@param |
930 |
|
|
931 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
932 |
317 |
@Override... |
933 |
|
public void setTextColour2(Color textColour2) |
934 |
|
{ |
935 |
317 |
this.textColour2 = textColour2; |
936 |
|
} |
937 |
|
|
938 |
|
|
939 |
|
|
940 |
|
|
941 |
|
@param |
942 |
|
|
943 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
944 |
338 |
@Override... |
945 |
|
public void setThreshold(int thresh) |
946 |
|
{ |
947 |
338 |
threshold = thresh; |
948 |
|
} |
949 |
|
|
950 |
|
|
951 |
|
@param |
952 |
|
|
953 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
954 |
317 |
@Override... |
955 |
|
public void setThresholdTextColour(int thresholdTextColour) |
956 |
|
{ |
957 |
317 |
this.thresholdTextColour = thresholdTextColour; |
958 |
|
} |
959 |
|
|
960 |
|
|
961 |
|
|
962 |
|
|
963 |
|
@param |
964 |
|
|
965 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
966 |
837 |
@Override... |
967 |
|
public void setWrapAlignment(boolean state) |
968 |
|
{ |
969 |
837 |
wrapAlignment = state; |
970 |
|
} |
971 |
|
|
972 |
|
|
973 |
|
|
974 |
|
|
975 |
|
@param |
976 |
|
|
977 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
978 |
1095 |
@Override... |
979 |
|
public void setWrappedWidth(int w) |
980 |
|
{ |
981 |
1095 |
this.wrappedWidth = w; |
982 |
|
} |
983 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
984 |
3 |
@Override... |
985 |
|
public boolean sameStyle(ViewStyleI that) |
986 |
|
{ |
987 |
3 |
return this.equals(that); |
988 |
|
} |
989 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
990 |
330 |
@Override... |
991 |
|
public String getFontName() |
992 |
|
{ |
993 |
330 |
return fontName; |
994 |
|
} |
995 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
996 |
388 |
@Override... |
997 |
|
public int getFontSize() |
998 |
|
{ |
999 |
388 |
return fontSize; |
1000 |
|
} |
1001 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1002 |
386 |
@Override... |
1003 |
|
public int getFontStyle() |
1004 |
|
{ |
1005 |
386 |
return fontStyle; |
1006 |
|
} |
1007 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1008 |
914 |
@Override... |
1009 |
|
public void setFontName(String name) |
1010 |
|
{ |
1011 |
914 |
fontName = name; |
1012 |
|
} |
1013 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1014 |
914 |
@Override... |
1015 |
|
public void setFontSize(int size) |
1016 |
|
{ |
1017 |
914 |
fontSize = size; |
1018 |
|
|
1019 |
|
} |
1020 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1021 |
914 |
@Override... |
1022 |
|
public void setFontStyle(int style) |
1023 |
|
{ |
1024 |
914 |
fontStyle = style; |
1025 |
|
} |
1026 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1027 |
6913 |
@Override... |
1028 |
|
public int getIdWidth() |
1029 |
|
{ |
1030 |
6913 |
return idWidth; |
1031 |
|
} |
1032 |
|
|
1033 |
|
|
1034 |
|
@param |
1035 |
|
|
1036 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1037 |
1186 |
@Override... |
1038 |
|
public void setIdWidth(int idWidth) |
1039 |
|
{ |
1040 |
1186 |
this.idWidth = idWidth; |
1041 |
|
} |
1042 |
|
|
1043 |
|
|
1044 |
|
@return |
1045 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1046 |
994 |
@Override... |
1047 |
|
public boolean isCentreColumnLabels() |
1048 |
|
{ |
1049 |
994 |
return centreColumnLabels; |
1050 |
|
} |
1051 |
|
|
1052 |
|
|
1053 |
|
@param |
1054 |
|
|
1055 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1056 |
825 |
@Override... |
1057 |
|
public void setCentreColumnLabels(boolean centreColumnLabels) |
1058 |
|
{ |
1059 |
825 |
this.centreColumnLabels = centreColumnLabels; |
1060 |
|
} |
1061 |
|
|
1062 |
|
|
1063 |
|
@return |
1064 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1065 |
992 |
@Override... |
1066 |
|
public boolean isShowDBRefs() |
1067 |
|
{ |
1068 |
992 |
return showdbrefs; |
1069 |
|
} |
1070 |
|
|
1071 |
|
|
1072 |
|
@param |
1073 |
|
|
1074 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1075 |
825 |
@Override... |
1076 |
|
public void setShowDBRefs(boolean showdbrefs) |
1077 |
|
{ |
1078 |
825 |
this.showdbrefs = showdbrefs; |
1079 |
|
} |
1080 |
|
|
1081 |
|
|
1082 |
|
@return |
1083 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1084 |
986 |
@Override... |
1085 |
|
public boolean isShowNPFeats() |
1086 |
|
{ |
1087 |
986 |
return shownpfeats; |
1088 |
|
} |
1089 |
|
|
1090 |
|
|
1091 |
|
@param |
1092 |
|
|
1093 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1094 |
825 |
@Override... |
1095 |
|
public void setShowNPFeats(boolean shownpfeats) |
1096 |
|
{ |
1097 |
825 |
this.shownpfeats = shownpfeats; |
1098 |
|
} |
1099 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1100 |
335 |
@Override... |
1101 |
|
public boolean isScaleProteinAsCdna() |
1102 |
|
{ |
1103 |
335 |
return this.scaleProteinAsCdna; |
1104 |
|
} |
1105 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1106 |
825 |
@Override... |
1107 |
|
public void setScaleProteinAsCdna(boolean b) |
1108 |
|
{ |
1109 |
825 |
this.scaleProteinAsCdna = b; |
1110 |
|
} |
1111 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1112 |
284 |
@Override... |
1113 |
|
public boolean isProteinFontAsCdna() |
1114 |
|
{ |
1115 |
284 |
return proteinFontAsCdna; |
1116 |
|
} |
1117 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1118 |
232 |
@Override... |
1119 |
|
public void setProteinFontAsCdna(boolean b) |
1120 |
|
{ |
1121 |
232 |
proteinFontAsCdna = b; |
1122 |
|
} |
1123 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1124 |
317 |
@Override... |
1125 |
|
public void setShowComplementFeatures(boolean b) |
1126 |
|
{ |
1127 |
317 |
showComplementFeatures = b; |
1128 |
|
} |
1129 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1130 |
412823 |
@Override... |
1131 |
|
public boolean isShowComplementFeatures() |
1132 |
|
{ |
1133 |
412917 |
return showComplementFeatures; |
1134 |
|
} |
1135 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1136 |
317 |
@Override... |
1137 |
|
public void setShowComplementFeaturesOnTop(boolean b) |
1138 |
|
{ |
1139 |
317 |
showComplementFeaturesOnTop = b; |
1140 |
|
} |
1141 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1142 |
307 |
@Override... |
1143 |
|
public boolean isShowComplementFeaturesOnTop() |
1144 |
|
{ |
1145 |
307 |
return showComplementFeaturesOnTop; |
1146 |
|
} |
1147 |
|
} |