1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
package jalview.xml.binding.jalview; |
9 |
|
|
10 |
|
import java.util.ArrayList; |
11 |
|
import java.util.List; |
12 |
|
import javax.xml.bind.annotation.XmlAccessType; |
13 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
14 |
|
import javax.xml.bind.annotation.XmlAttribute; |
15 |
|
import javax.xml.bind.annotation.XmlElement; |
16 |
|
import javax.xml.bind.annotation.XmlID; |
17 |
|
import javax.xml.bind.annotation.XmlSchemaType; |
18 |
|
import javax.xml.bind.annotation.XmlType; |
19 |
|
import javax.xml.bind.annotation.XmlValue; |
20 |
|
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; |
21 |
|
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
22 |
|
import javax.xml.datatype.XMLGregorianCalendar; |
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
|
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
|
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
|
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
|
65 |
|
|
66 |
|
|
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
|
73 |
|
|
74 |
|
|
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
|
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
|
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
|
101 |
|
|
102 |
|
|
103 |
|
|
104 |
|
|
105 |
|
|
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
|
111 |
|
|
112 |
|
|
113 |
|
|
114 |
|
|
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
|
119 |
|
|
120 |
|
|
121 |
|
|
122 |
|
|
123 |
|
|
124 |
|
|
125 |
|
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
|
130 |
|
|
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
|
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
|
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
148 |
|
|
149 |
|
|
150 |
|
|
151 |
|
|
152 |
|
|
153 |
|
|
154 |
|
|
155 |
|
|
156 |
|
|
157 |
|
|
158 |
|
|
159 |
|
|
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
|
164 |
|
|
165 |
|
|
166 |
|
|
167 |
|
|
168 |
|
|
169 |
|
|
170 |
|
|
171 |
|
|
172 |
|
|
173 |
|
|
174 |
|
|
175 |
|
|
176 |
|
|
177 |
|
|
178 |
|
|
179 |
|
|
180 |
|
|
181 |
|
|
182 |
|
|
183 |
|
|
184 |
|
|
185 |
|
|
186 |
|
|
187 |
|
|
188 |
|
|
189 |
|
|
190 |
|
|
191 |
|
|
192 |
|
|
193 |
|
|
194 |
|
|
195 |
|
|
196 |
|
|
197 |
|
|
198 |
|
|
199 |
|
|
200 |
|
|
201 |
|
|
202 |
|
|
203 |
|
|
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
|
209 |
|
|
210 |
|
|
211 |
|
|
212 |
|
|
213 |
|
|
214 |
|
|
215 |
|
|
216 |
|
|
217 |
|
|
218 |
|
|
219 |
|
|
220 |
|
|
221 |
|
|
222 |
|
|
223 |
|
|
224 |
|
|
225 |
|
|
226 |
|
|
227 |
|
|
228 |
|
|
229 |
|
|
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
|
237 |
|
|
238 |
|
|
239 |
|
|
240 |
|
|
241 |
|
|
242 |
|
|
243 |
|
|
244 |
|
|
245 |
|
|
246 |
|
|
247 |
|
|
248 |
|
|
249 |
|
|
250 |
|
|
251 |
|
|
252 |
|
|
253 |
|
|
254 |
|
|
255 |
|
|
256 |
|
|
257 |
|
|
258 |
|
|
259 |
|
|
260 |
|
|
261 |
|
|
262 |
|
|
263 |
|
|
264 |
|
|
265 |
|
|
266 |
|
|
267 |
|
|
268 |
|
|
269 |
|
|
270 |
|
|
271 |
|
|
272 |
|
|
273 |
|
|
274 |
|
|
275 |
|
|
276 |
|
|
277 |
|
|
278 |
|
|
279 |
|
|
280 |
|
|
281 |
|
|
282 |
|
|
283 |
|
|
284 |
|
|
285 |
|
|
286 |
|
|
287 |
|
|
288 |
|
|
289 |
|
|
290 |
|
|
291 |
|
|
292 |
|
|
293 |
|
|
294 |
|
|
295 |
|
|
296 |
|
|
297 |
|
|
298 |
|
|
299 |
|
|
300 |
|
|
301 |
|
|
302 |
|
|
303 |
|
|
304 |
|
|
305 |
|
|
306 |
|
|
307 |
|
|
308 |
|
|
309 |
|
|
310 |
|
|
311 |
|
|
312 |
|
|
313 |
|
|
314 |
|
|
315 |
|
|
316 |
|
|
317 |
|
|
318 |
|
|
319 |
|
|
320 |
|
|
321 |
|
|
322 |
|
|
323 |
|
|
324 |
|
|
325 |
|
|
326 |
|
|
327 |
|
|
328 |
|
|
329 |
|
|
330 |
|
|
331 |
|
|
332 |
|
|
333 |
|
|
334 |
|
|
335 |
|
|
336 |
|
|
337 |
|
|
338 |
|
|
339 |
|
|
340 |
|
|
341 |
|
|
342 |
|
|
343 |
|
|
344 |
|
|
345 |
|
|
346 |
|
|
347 |
|
|
348 |
|
|
349 |
|
|
350 |
|
|
351 |
|
|
352 |
|
|
353 |
|
|
354 |
|
|
355 |
|
|
356 |
|
|
357 |
|
|
358 |
|
|
359 |
|
|
360 |
|
|
361 |
|
|
362 |
|
|
363 |
|
|
364 |
|
|
365 |
|
|
366 |
|
|
367 |
|
|
368 |
|
|
369 |
|
|
370 |
|
|
371 |
|
|
372 |
|
|
373 |
|
|
374 |
|
|
375 |
|
|
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
|
381 |
|
|
382 |
|
|
383 |
|
|
384 |
|
|
385 |
|
|
386 |
|
|
387 |
|
|
388 |
|
|
389 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
390 |
|
@XmlType( |
391 |
|
name = "JalviewModel", |
392 |
|
namespace = "www.jalview.org", |
393 |
|
propOrder = |
394 |
|
{ "creationDate", "version", "vamsasModel", "jSeq", "jGroup", "viewport", |
395 |
|
"userColours", "tree", "pcaViewer", "featureSettings" }) |
|
|
| 0% |
Uncovered Elements: 52 (52) |
Complexity: 20 |
Complexity Density: 0.77 |
|
396 |
|
public class JalviewModel |
397 |
|
{ |
398 |
|
|
399 |
|
@XmlElement(required = true) |
400 |
|
@XmlSchemaType(name = "dateTime") |
401 |
|
protected XMLGregorianCalendar creationDate; |
402 |
|
|
403 |
|
@XmlElement(required = true) |
404 |
|
protected String version; |
405 |
|
|
406 |
|
@XmlElement(required = true) |
407 |
|
protected VAMSAS vamsasModel; |
408 |
|
|
409 |
|
@XmlElement(name = "JSeq") |
410 |
|
protected List<JalviewModel.JSeq> jSeq; |
411 |
|
|
412 |
|
@XmlElement(name = "JGroup") |
413 |
|
protected List<JalviewModel.JGroup> jGroup; |
414 |
|
|
415 |
|
@XmlElement(name = "Viewport") |
416 |
|
protected List<JalviewModel.Viewport> viewport; |
417 |
|
|
418 |
|
@XmlElement(name = "UserColours") |
419 |
|
protected List<JalviewModel.UserColours> userColours; |
420 |
|
|
421 |
|
protected List<JalviewModel.Tree> tree; |
422 |
|
|
423 |
|
@XmlElement(name = "PcaViewer") |
424 |
|
protected List<JalviewModel.PcaViewer> pcaViewer; |
425 |
|
|
426 |
|
@XmlElement(name = "FeatureSettings") |
427 |
|
protected JalviewModel.FeatureSettings featureSettings; |
428 |
|
|
429 |
|
|
430 |
|
|
431 |
|
|
432 |
|
@return@link |
433 |
|
|
434 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
435 |
0 |
public XMLGregorianCalendar getCreationDate()... |
436 |
|
{ |
437 |
0 |
return creationDate; |
438 |
|
} |
439 |
|
|
440 |
|
|
441 |
|
|
442 |
|
|
443 |
|
@param |
444 |
|
@link |
445 |
|
|
446 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
447 |
0 |
public void setCreationDate(XMLGregorianCalendar value)... |
448 |
|
{ |
449 |
0 |
this.creationDate = value; |
450 |
|
} |
451 |
|
|
452 |
|
|
453 |
|
|
454 |
|
|
455 |
|
@return@link |
456 |
|
|
457 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
458 |
0 |
public String getVersion()... |
459 |
|
{ |
460 |
0 |
return version; |
461 |
|
} |
462 |
|
|
463 |
|
|
464 |
|
|
465 |
|
|
466 |
|
@param |
467 |
|
@link |
468 |
|
|
469 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
470 |
0 |
public void setVersion(String value)... |
471 |
|
{ |
472 |
0 |
this.version = value; |
473 |
|
} |
474 |
|
|
475 |
|
|
476 |
|
|
477 |
|
|
478 |
|
@return@link |
479 |
|
|
480 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
481 |
0 |
public VAMSAS getVamsasModel()... |
482 |
|
{ |
483 |
0 |
return vamsasModel; |
484 |
|
} |
485 |
|
|
486 |
|
|
487 |
|
|
488 |
|
|
489 |
|
@param |
490 |
|
@link |
491 |
|
|
492 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
493 |
0 |
public void setVamsasModel(VAMSAS value)... |
494 |
|
{ |
495 |
0 |
this.vamsasModel = value; |
496 |
|
} |
497 |
|
|
498 |
|
|
499 |
|
|
500 |
|
|
501 |
|
|
502 |
|
|
503 |
|
|
504 |
|
|
505 |
|
|
506 |
|
|
507 |
|
|
508 |
|
|
509 |
|
|
510 |
|
|
511 |
|
@link |
512 |
|
|
513 |
|
|
514 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
515 |
0 |
public List<JalviewModel.JSeq> getJSeq()... |
516 |
|
{ |
517 |
0 |
if (jSeq == null) |
518 |
|
{ |
519 |
0 |
jSeq = new ArrayList<JalviewModel.JSeq>(); |
520 |
|
} |
521 |
0 |
return this.jSeq; |
522 |
|
} |
523 |
|
|
524 |
|
|
525 |
|
|
526 |
|
|
527 |
|
|
528 |
|
|
529 |
|
|
530 |
|
|
531 |
|
|
532 |
|
|
533 |
|
|
534 |
|
|
535 |
|
|
536 |
|
|
537 |
|
@link |
538 |
|
|
539 |
|
|
540 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
541 |
0 |
public List<JalviewModel.JGroup> getJGroup()... |
542 |
|
{ |
543 |
0 |
if (jGroup == null) |
544 |
|
{ |
545 |
0 |
jGroup = new ArrayList<JalviewModel.JGroup>(); |
546 |
|
} |
547 |
0 |
return this.jGroup; |
548 |
|
} |
549 |
|
|
550 |
|
|
551 |
|
|
552 |
|
|
553 |
|
|
554 |
|
|
555 |
|
|
556 |
|
|
557 |
|
|
558 |
|
|
559 |
|
|
560 |
|
|
561 |
|
|
562 |
|
|
563 |
|
@link |
564 |
|
|
565 |
|
|
566 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
567 |
0 |
public List<JalviewModel.Viewport> getViewport()... |
568 |
|
{ |
569 |
0 |
if (viewport == null) |
570 |
|
{ |
571 |
0 |
viewport = new ArrayList<JalviewModel.Viewport>(); |
572 |
|
} |
573 |
0 |
return this.viewport; |
574 |
|
} |
575 |
|
|
576 |
|
|
577 |
|
|
578 |
|
|
579 |
|
|
580 |
|
|
581 |
|
|
582 |
|
|
583 |
|
|
584 |
|
|
585 |
|
|
586 |
|
|
587 |
|
|
588 |
|
|
589 |
|
@link |
590 |
|
|
591 |
|
|
592 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
593 |
0 |
public List<JalviewModel.UserColours> getUserColours()... |
594 |
|
{ |
595 |
0 |
if (userColours == null) |
596 |
|
{ |
597 |
0 |
userColours = new ArrayList<JalviewModel.UserColours>(); |
598 |
|
} |
599 |
0 |
return this.userColours; |
600 |
|
} |
601 |
|
|
602 |
|
|
603 |
|
|
604 |
|
|
605 |
|
|
606 |
|
|
607 |
|
|
608 |
|
|
609 |
|
|
610 |
|
|
611 |
|
|
612 |
|
|
613 |
|
|
614 |
|
|
615 |
|
@link |
616 |
|
|
617 |
|
|
618 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
619 |
0 |
public List<JalviewModel.Tree> getTree()... |
620 |
|
{ |
621 |
0 |
if (tree == null) |
622 |
|
{ |
623 |
0 |
tree = new ArrayList<JalviewModel.Tree>(); |
624 |
|
} |
625 |
0 |
return this.tree; |
626 |
|
} |
627 |
|
|
628 |
|
|
629 |
|
|
630 |
|
|
631 |
|
|
632 |
|
|
633 |
|
|
634 |
|
|
635 |
|
|
636 |
|
|
637 |
|
|
638 |
|
|
639 |
|
|
640 |
|
|
641 |
|
@link |
642 |
|
|
643 |
|
|
644 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
645 |
0 |
public List<JalviewModel.PcaViewer> getPcaViewer()... |
646 |
|
{ |
647 |
0 |
if (pcaViewer == null) |
648 |
|
{ |
649 |
0 |
pcaViewer = new ArrayList<JalviewModel.PcaViewer>(); |
650 |
|
} |
651 |
0 |
return this.pcaViewer; |
652 |
|
} |
653 |
|
|
654 |
|
|
655 |
|
|
656 |
|
|
657 |
|
@return@link |
658 |
|
|
659 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
660 |
0 |
public JalviewModel.FeatureSettings getFeatureSettings()... |
661 |
|
{ |
662 |
0 |
return featureSettings; |
663 |
|
} |
664 |
|
|
665 |
|
|
666 |
|
|
667 |
|
|
668 |
|
@param |
669 |
|
@link |
670 |
|
|
671 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
672 |
0 |
public void setFeatureSettings(JalviewModel.FeatureSettings value)... |
673 |
|
{ |
674 |
0 |
this.featureSettings = value; |
675 |
|
} |
676 |
|
|
677 |
|
|
678 |
|
|
679 |
|
|
680 |
|
|
681 |
|
|
682 |
|
|
683 |
|
|
684 |
|
|
685 |
|
|
686 |
|
|
687 |
|
|
688 |
|
|
689 |
|
|
690 |
|
|
691 |
|
|
692 |
|
|
693 |
|
|
694 |
|
|
695 |
|
|
696 |
|
|
697 |
|
|
698 |
|
|
699 |
|
|
700 |
|
|
701 |
|
|
702 |
|
|
703 |
|
|
704 |
|
|
705 |
|
|
706 |
|
|
707 |
|
|
708 |
|
|
709 |
|
|
710 |
|
|
711 |
|
|
712 |
|
|
713 |
|
|
714 |
|
|
715 |
|
|
716 |
|
|
717 |
|
|
718 |
|
|
719 |
|
|
720 |
|
|
721 |
|
|
722 |
|
|
723 |
|
|
724 |
|
|
725 |
|
|
726 |
|
|
727 |
|
|
728 |
|
|
729 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
730 |
|
@XmlType(name = "", propOrder = { "setting", "group" }) |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 4 |
Complexity Density: 0.67 |
|
731 |
|
public static class FeatureSettings |
732 |
|
{ |
733 |
|
|
734 |
|
@XmlElement(namespace = "www.jalview.org") |
735 |
|
protected List<JalviewModel.FeatureSettings.Setting> setting; |
736 |
|
|
737 |
|
@XmlElement(namespace = "www.jalview.org") |
738 |
|
protected List<JalviewModel.FeatureSettings.Group> group; |
739 |
|
|
740 |
|
|
741 |
|
|
742 |
|
|
743 |
|
|
744 |
|
|
745 |
|
|
746 |
|
|
747 |
|
|
748 |
|
|
749 |
|
|
750 |
|
|
751 |
|
|
752 |
|
|
753 |
|
@link |
754 |
|
|
755 |
|
|
756 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
757 |
0 |
public List<JalviewModel.FeatureSettings.Setting> getSetting()... |
758 |
|
{ |
759 |
0 |
if (setting == null) |
760 |
|
{ |
761 |
0 |
setting = new ArrayList<JalviewModel.FeatureSettings.Setting>(); |
762 |
|
} |
763 |
0 |
return this.setting; |
764 |
|
} |
765 |
|
|
766 |
|
|
767 |
|
|
768 |
|
|
769 |
|
|
770 |
|
|
771 |
|
|
772 |
|
|
773 |
|
|
774 |
|
|
775 |
|
|
776 |
|
|
777 |
|
|
778 |
|
|
779 |
|
@link |
780 |
|
|
781 |
|
|
782 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
783 |
0 |
public List<JalviewModel.FeatureSettings.Group> getGroup()... |
784 |
|
{ |
785 |
0 |
if (group == null) |
786 |
|
{ |
787 |
0 |
group = new ArrayList<JalviewModel.FeatureSettings.Group>(); |
788 |
|
} |
789 |
0 |
return this.group; |
790 |
|
} |
791 |
|
|
792 |
|
|
793 |
|
|
794 |
|
|
795 |
|
|
796 |
|
|
797 |
|
|
798 |
|
|
799 |
|
|
800 |
|
|
801 |
|
|
802 |
|
|
803 |
|
|
804 |
|
|
805 |
|
|
806 |
|
|
807 |
|
|
808 |
|
|
809 |
|
|
810 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
811 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
812 |
|
public static class Group |
813 |
|
{ |
814 |
|
|
815 |
|
@XmlAttribute(name = "name", required = true) |
816 |
|
protected String name; |
817 |
|
|
818 |
|
@XmlAttribute(name = "display", required = true) |
819 |
|
protected boolean display; |
820 |
|
|
821 |
|
|
822 |
|
|
823 |
|
|
824 |
|
@return@link |
825 |
|
|
826 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
827 |
0 |
public String getName()... |
828 |
|
{ |
829 |
0 |
return name; |
830 |
|
} |
831 |
|
|
832 |
|
|
833 |
|
|
834 |
|
|
835 |
|
@param |
836 |
|
@link |
837 |
|
|
838 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
839 |
0 |
public void setName(String value)... |
840 |
|
{ |
841 |
0 |
this.name = value; |
842 |
|
} |
843 |
|
|
844 |
|
|
845 |
|
|
846 |
|
|
847 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
848 |
0 |
public boolean isDisplay()... |
849 |
|
{ |
850 |
0 |
return display; |
851 |
|
} |
852 |
|
|
853 |
|
|
854 |
|
|
855 |
|
|
856 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
857 |
0 |
public void setDisplay(boolean value)... |
858 |
|
{ |
859 |
0 |
this.display = value; |
860 |
|
} |
861 |
|
|
862 |
|
} |
863 |
|
|
864 |
|
|
865 |
|
|
866 |
|
|
867 |
|
|
868 |
|
|
869 |
|
|
870 |
|
|
871 |
|
|
872 |
|
|
873 |
|
|
874 |
|
|
875 |
|
|
876 |
|
|
877 |
|
|
878 |
|
|
879 |
|
|
880 |
|
|
881 |
|
|
882 |
|
|
883 |
|
|
884 |
|
|
885 |
|
|
886 |
|
|
887 |
|
|
888 |
|
|
889 |
|
|
890 |
|
|
891 |
|
|
892 |
|
|
893 |
|
|
894 |
|
|
895 |
|
|
896 |
|
|
897 |
|
|
898 |
|
|
899 |
|
|
900 |
|
|
901 |
|
|
902 |
|
|
903 |
|
|
904 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
905 |
|
@XmlType(name = "", propOrder = { "attributeName", "matcherSet" }) |
|
|
| 0% |
Uncovered Elements: 62 (62) |
Complexity: 29 |
Complexity Density: 0.94 |
|
906 |
|
public static class Setting |
907 |
|
{ |
908 |
|
|
909 |
|
@XmlElement(namespace = "www.jalview.org") |
910 |
|
protected List<String> attributeName; |
911 |
|
|
912 |
|
@XmlElement(namespace = "www.jalview.org") |
913 |
|
protected FeatureMatcherSet matcherSet; |
914 |
|
|
915 |
|
@XmlAttribute(name = "type", required = true) |
916 |
|
protected String type; |
917 |
|
|
918 |
|
@XmlAttribute(name = "colour", required = true) |
919 |
|
protected int colour; |
920 |
|
|
921 |
|
@XmlAttribute(name = "display", required = true) |
922 |
|
protected boolean display; |
923 |
|
|
924 |
|
@XmlAttribute(name = "order") |
925 |
|
protected Float order; |
926 |
|
|
927 |
|
@XmlAttribute(name = "mincolour") |
928 |
|
protected Integer mincolour; |
929 |
|
|
930 |
|
@XmlAttribute(name = "noValueColour") |
931 |
|
protected NoValueColour noValueColour; |
932 |
|
|
933 |
|
@XmlAttribute(name = "threshold") |
934 |
|
protected Float threshold; |
935 |
|
|
936 |
|
@XmlAttribute(name = "threshstate") |
937 |
|
protected Integer threshstate; |
938 |
|
|
939 |
|
@XmlAttribute(name = "max") |
940 |
|
protected Float max; |
941 |
|
|
942 |
|
@XmlAttribute(name = "min") |
943 |
|
protected Float min; |
944 |
|
|
945 |
|
@XmlAttribute(name = "colourByLabel") |
946 |
|
protected Boolean colourByLabel; |
947 |
|
|
948 |
|
@XmlAttribute(name = "autoScale") |
949 |
|
protected Boolean autoScale; |
950 |
|
|
951 |
|
|
952 |
|
|
953 |
|
|
954 |
|
|
955 |
|
|
956 |
|
|
957 |
|
|
958 |
|
|
959 |
|
|
960 |
|
|
961 |
|
|
962 |
|
|
963 |
|
|
964 |
|
@link |
965 |
|
|
966 |
|
|
967 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
968 |
0 |
public List<String> getAttributeName()... |
969 |
|
{ |
970 |
0 |
if (attributeName == null) |
971 |
|
{ |
972 |
0 |
attributeName = new ArrayList<String>(); |
973 |
|
} |
974 |
0 |
return this.attributeName; |
975 |
|
} |
976 |
|
|
977 |
|
|
978 |
|
|
979 |
|
|
980 |
|
@return@link |
981 |
|
|
982 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
983 |
0 |
public FeatureMatcherSet getMatcherSet()... |
984 |
|
{ |
985 |
0 |
return matcherSet; |
986 |
|
} |
987 |
|
|
988 |
|
|
989 |
|
|
990 |
|
|
991 |
|
@param |
992 |
|
@link |
993 |
|
|
994 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
995 |
0 |
public void setMatcherSet(FeatureMatcherSet value)... |
996 |
|
{ |
997 |
0 |
this.matcherSet = value; |
998 |
|
} |
999 |
|
|
1000 |
|
|
1001 |
|
|
1002 |
|
|
1003 |
|
@return@link |
1004 |
|
|
1005 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1006 |
0 |
public String getType()... |
1007 |
|
{ |
1008 |
0 |
return type; |
1009 |
|
} |
1010 |
|
|
1011 |
|
|
1012 |
|
|
1013 |
|
|
1014 |
|
@param |
1015 |
|
@link |
1016 |
|
|
1017 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1018 |
0 |
public void setType(String value)... |
1019 |
|
{ |
1020 |
0 |
this.type = value; |
1021 |
|
} |
1022 |
|
|
1023 |
|
|
1024 |
|
|
1025 |
|
|
1026 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1027 |
0 |
public int getColour()... |
1028 |
|
{ |
1029 |
0 |
return colour; |
1030 |
|
} |
1031 |
|
|
1032 |
|
|
1033 |
|
|
1034 |
|
|
1035 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1036 |
0 |
public void setColour(int value)... |
1037 |
|
{ |
1038 |
0 |
this.colour = value; |
1039 |
|
} |
1040 |
|
|
1041 |
|
|
1042 |
|
|
1043 |
|
|
1044 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1045 |
0 |
public boolean isDisplay()... |
1046 |
|
{ |
1047 |
0 |
return display; |
1048 |
|
} |
1049 |
|
|
1050 |
|
|
1051 |
|
|
1052 |
|
|
1053 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1054 |
0 |
public void setDisplay(boolean value)... |
1055 |
|
{ |
1056 |
0 |
this.display = value; |
1057 |
|
} |
1058 |
|
|
1059 |
|
|
1060 |
|
|
1061 |
|
|
1062 |
|
@return@link |
1063 |
|
|
1064 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1065 |
0 |
public Float getOrder()... |
1066 |
|
{ |
1067 |
0 |
return order; |
1068 |
|
} |
1069 |
|
|
1070 |
|
|
1071 |
|
|
1072 |
|
|
1073 |
|
@param |
1074 |
|
@link |
1075 |
|
|
1076 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1077 |
0 |
public void setOrder(Float value)... |
1078 |
|
{ |
1079 |
0 |
this.order = value; |
1080 |
|
} |
1081 |
|
|
1082 |
|
|
1083 |
|
|
1084 |
|
|
1085 |
|
@return@link |
1086 |
|
|
1087 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1088 |
0 |
public Integer getMincolour()... |
1089 |
|
{ |
1090 |
0 |
return mincolour; |
1091 |
|
} |
1092 |
|
|
1093 |
|
|
1094 |
|
|
1095 |
|
|
1096 |
|
@param |
1097 |
|
@link |
1098 |
|
|
1099 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1100 |
0 |
public void setMincolour(Integer value)... |
1101 |
|
{ |
1102 |
0 |
this.mincolour = value; |
1103 |
|
} |
1104 |
|
|
1105 |
|
|
1106 |
|
|
1107 |
|
|
1108 |
|
@return@link |
1109 |
|
|
1110 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1111 |
0 |
public NoValueColour getNoValueColour()... |
1112 |
|
{ |
1113 |
0 |
if (noValueColour == null) |
1114 |
|
{ |
1115 |
0 |
return NoValueColour.MIN; |
1116 |
|
} |
1117 |
|
else |
1118 |
|
{ |
1119 |
0 |
return noValueColour; |
1120 |
|
} |
1121 |
|
} |
1122 |
|
|
1123 |
|
|
1124 |
|
|
1125 |
|
|
1126 |
|
@param |
1127 |
|
@link |
1128 |
|
|
1129 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1130 |
0 |
public void setNoValueColour(NoValueColour value)... |
1131 |
|
{ |
1132 |
0 |
this.noValueColour = value; |
1133 |
|
} |
1134 |
|
|
1135 |
|
|
1136 |
|
|
1137 |
|
|
1138 |
|
@return@link |
1139 |
|
|
1140 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1141 |
0 |
public Float getThreshold()... |
1142 |
|
{ |
1143 |
0 |
return threshold; |
1144 |
|
} |
1145 |
|
|
1146 |
|
|
1147 |
|
|
1148 |
|
|
1149 |
|
@param |
1150 |
|
@link |
1151 |
|
|
1152 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1153 |
0 |
public void setThreshold(Float value)... |
1154 |
|
{ |
1155 |
0 |
this.threshold = value; |
1156 |
|
} |
1157 |
|
|
1158 |
|
|
1159 |
|
|
1160 |
|
|
1161 |
|
@return@link |
1162 |
|
|
1163 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1164 |
0 |
public Integer getThreshstate()... |
1165 |
|
{ |
1166 |
0 |
return threshstate; |
1167 |
|
} |
1168 |
|
|
1169 |
|
|
1170 |
|
|
1171 |
|
|
1172 |
|
@param |
1173 |
|
@link |
1174 |
|
|
1175 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1176 |
0 |
public void setThreshstate(Integer value)... |
1177 |
|
{ |
1178 |
0 |
this.threshstate = value; |
1179 |
|
} |
1180 |
|
|
1181 |
|
|
1182 |
|
|
1183 |
|
|
1184 |
|
@return@link |
1185 |
|
|
1186 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1187 |
0 |
public Float getMax()... |
1188 |
|
{ |
1189 |
0 |
return max; |
1190 |
|
} |
1191 |
|
|
1192 |
|
|
1193 |
|
|
1194 |
|
|
1195 |
|
@param |
1196 |
|
@link |
1197 |
|
|
1198 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1199 |
0 |
public void setMax(Float value)... |
1200 |
|
{ |
1201 |
0 |
this.max = value; |
1202 |
|
} |
1203 |
|
|
1204 |
|
|
1205 |
|
|
1206 |
|
|
1207 |
|
@return@link |
1208 |
|
|
1209 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1210 |
0 |
public Float getMin()... |
1211 |
|
{ |
1212 |
0 |
return min; |
1213 |
|
} |
1214 |
|
|
1215 |
|
|
1216 |
|
|
1217 |
|
|
1218 |
|
@param |
1219 |
|
@link |
1220 |
|
|
1221 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1222 |
0 |
public void setMin(Float value)... |
1223 |
|
{ |
1224 |
0 |
this.min = value; |
1225 |
|
} |
1226 |
|
|
1227 |
|
|
1228 |
|
|
1229 |
|
|
1230 |
|
@return@link |
1231 |
|
|
1232 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1233 |
0 |
public Boolean isColourByLabel()... |
1234 |
|
{ |
1235 |
0 |
return colourByLabel; |
1236 |
|
} |
1237 |
|
|
1238 |
|
|
1239 |
|
|
1240 |
|
|
1241 |
|
@param |
1242 |
|
@link |
1243 |
|
|
1244 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1245 |
0 |
public void setColourByLabel(Boolean value)... |
1246 |
|
{ |
1247 |
0 |
this.colourByLabel = value; |
1248 |
|
} |
1249 |
|
|
1250 |
|
|
1251 |
|
|
1252 |
|
|
1253 |
|
@return@link |
1254 |
|
|
1255 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1256 |
0 |
public Boolean isAutoScale()... |
1257 |
|
{ |
1258 |
0 |
return autoScale; |
1259 |
|
} |
1260 |
|
|
1261 |
|
|
1262 |
|
|
1263 |
|
|
1264 |
|
@param |
1265 |
|
@link |
1266 |
|
|
1267 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1268 |
0 |
public void setAutoScale(Boolean value)... |
1269 |
|
{ |
1270 |
0 |
this.autoScale = value; |
1271 |
|
} |
1272 |
|
|
1273 |
|
} |
1274 |
|
|
1275 |
|
} |
1276 |
|
|
1277 |
|
|
1278 |
|
|
1279 |
|
|
1280 |
|
|
1281 |
|
|
1282 |
|
|
1283 |
|
|
1284 |
|
|
1285 |
|
|
1286 |
|
|
1287 |
|
|
1288 |
|
|
1289 |
|
|
1290 |
|
|
1291 |
|
|
1292 |
|
|
1293 |
|
|
1294 |
|
|
1295 |
|
|
1296 |
|
|
1297 |
|
|
1298 |
|
|
1299 |
|
|
1300 |
|
|
1301 |
|
|
1302 |
|
|
1303 |
|
|
1304 |
|
|
1305 |
|
|
1306 |
|
|
1307 |
|
|
1308 |
|
|
1309 |
|
|
1310 |
|
|
1311 |
|
|
1312 |
|
|
1313 |
|
|
1314 |
|
|
1315 |
|
|
1316 |
|
|
1317 |
|
|
1318 |
|
|
1319 |
|
|
1320 |
|
|
1321 |
|
|
1322 |
|
|
1323 |
|
|
1324 |
|
|
1325 |
|
|
1326 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
1327 |
|
@XmlType(name = "", propOrder = { "seq", "annotationColours" }) |
|
|
| 0% |
Uncovered Elements: 102 (102) |
Complexity: 46 |
Complexity Density: 0.9 |
|
1328 |
|
public static class JGroup |
1329 |
|
{ |
1330 |
|
|
1331 |
|
@XmlElement(namespace = "www.jalview.org", required = true) |
1332 |
|
protected List<String> seq; |
1333 |
|
|
1334 |
|
@XmlElement(namespace = "www.jalview.org") |
1335 |
|
protected AnnotationColourScheme annotationColours; |
1336 |
|
|
1337 |
|
@XmlAttribute(name = "start") |
1338 |
|
protected Integer start; |
1339 |
|
|
1340 |
|
@XmlAttribute(name = "end") |
1341 |
|
protected Integer end; |
1342 |
|
|
1343 |
|
@XmlAttribute(name = "name") |
1344 |
|
protected String name; |
1345 |
|
|
1346 |
|
@XmlAttribute(name = "colour") |
1347 |
|
protected String colour; |
1348 |
|
|
1349 |
|
@XmlAttribute(name = "consThreshold") |
1350 |
|
protected Integer consThreshold; |
1351 |
|
|
1352 |
|
@XmlAttribute(name = "pidThreshold") |
1353 |
|
protected Integer pidThreshold; |
1354 |
|
|
1355 |
|
@XmlAttribute(name = "outlineColour") |
1356 |
|
protected Integer outlineColour; |
1357 |
|
|
1358 |
|
@XmlAttribute(name = "displayBoxes") |
1359 |
|
protected Boolean displayBoxes; |
1360 |
|
|
1361 |
|
@XmlAttribute(name = "displayText") |
1362 |
|
protected Boolean displayText; |
1363 |
|
|
1364 |
|
@XmlAttribute(name = "colourText") |
1365 |
|
protected Boolean colourText; |
1366 |
|
|
1367 |
|
@XmlAttribute(name = "textCol1") |
1368 |
|
protected Integer textCol1; |
1369 |
|
|
1370 |
|
@XmlAttribute(name = "textCol2") |
1371 |
|
protected Integer textCol2; |
1372 |
|
|
1373 |
|
@XmlAttribute(name = "textColThreshold") |
1374 |
|
protected Integer textColThreshold; |
1375 |
|
|
1376 |
|
@XmlAttribute(name = "showUnconserved") |
1377 |
|
protected Boolean showUnconserved; |
1378 |
|
|
1379 |
|
@XmlAttribute(name = "ignoreGapsinConsensus") |
1380 |
|
protected Boolean ignoreGapsinConsensus; |
1381 |
|
|
1382 |
|
@XmlAttribute(name = "showConsensusHistogram") |
1383 |
|
protected Boolean showConsensusHistogram; |
1384 |
|
|
1385 |
|
@XmlAttribute(name = "showSequenceLogo") |
1386 |
|
protected Boolean showSequenceLogo; |
1387 |
|
|
1388 |
|
@XmlAttribute(name = "normaliseSequenceLogo") |
1389 |
|
protected Boolean normaliseSequenceLogo; |
1390 |
|
|
1391 |
|
@XmlAttribute(name = "id") |
1392 |
|
protected String id; |
1393 |
|
|
1394 |
|
|
1395 |
|
|
1396 |
|
|
1397 |
|
|
1398 |
|
|
1399 |
|
|
1400 |
|
|
1401 |
|
|
1402 |
|
|
1403 |
|
|
1404 |
|
|
1405 |
|
|
1406 |
|
|
1407 |
|
@link |
1408 |
|
|
1409 |
|
|
1410 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1411 |
0 |
public List<String> getSeq()... |
1412 |
|
{ |
1413 |
0 |
if (seq == null) |
1414 |
|
{ |
1415 |
0 |
seq = new ArrayList<String>(); |
1416 |
|
} |
1417 |
0 |
return this.seq; |
1418 |
|
} |
1419 |
|
|
1420 |
|
|
1421 |
|
|
1422 |
|
|
1423 |
|
@return@link |
1424 |
|
|
1425 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1426 |
0 |
public AnnotationColourScheme getAnnotationColours()... |
1427 |
|
{ |
1428 |
0 |
return annotationColours; |
1429 |
|
} |
1430 |
|
|
1431 |
|
|
1432 |
|
|
1433 |
|
|
1434 |
|
@param |
1435 |
|
@link |
1436 |
|
|
1437 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1438 |
0 |
public void setAnnotationColours(AnnotationColourScheme value)... |
1439 |
|
{ |
1440 |
0 |
this.annotationColours = value; |
1441 |
|
} |
1442 |
|
|
1443 |
|
|
1444 |
|
|
1445 |
|
|
1446 |
|
@return@link |
1447 |
|
|
1448 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1449 |
0 |
public Integer getStart()... |
1450 |
|
{ |
1451 |
0 |
return start; |
1452 |
|
} |
1453 |
|
|
1454 |
|
|
1455 |
|
|
1456 |
|
|
1457 |
|
@param |
1458 |
|
@link |
1459 |
|
|
1460 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1461 |
0 |
public void setStart(Integer value)... |
1462 |
|
{ |
1463 |
0 |
this.start = value; |
1464 |
|
} |
1465 |
|
|
1466 |
|
|
1467 |
|
|
1468 |
|
|
1469 |
|
@return@link |
1470 |
|
|
1471 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1472 |
0 |
public Integer getEnd()... |
1473 |
|
{ |
1474 |
0 |
return end; |
1475 |
|
} |
1476 |
|
|
1477 |
|
|
1478 |
|
|
1479 |
|
|
1480 |
|
@param |
1481 |
|
@link |
1482 |
|
|
1483 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1484 |
0 |
public void setEnd(Integer value)... |
1485 |
|
{ |
1486 |
0 |
this.end = value; |
1487 |
|
} |
1488 |
|
|
1489 |
|
|
1490 |
|
|
1491 |
|
|
1492 |
|
@return@link |
1493 |
|
|
1494 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1495 |
0 |
public String getName()... |
1496 |
|
{ |
1497 |
0 |
return name; |
1498 |
|
} |
1499 |
|
|
1500 |
|
|
1501 |
|
|
1502 |
|
|
1503 |
|
@param |
1504 |
|
@link |
1505 |
|
|
1506 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1507 |
0 |
public void setName(String value)... |
1508 |
|
{ |
1509 |
0 |
this.name = value; |
1510 |
|
} |
1511 |
|
|
1512 |
|
|
1513 |
|
|
1514 |
|
|
1515 |
|
@return@link |
1516 |
|
|
1517 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1518 |
0 |
public String getColour()... |
1519 |
|
{ |
1520 |
0 |
return colour; |
1521 |
|
} |
1522 |
|
|
1523 |
|
|
1524 |
|
|
1525 |
|
|
1526 |
|
@param |
1527 |
|
@link |
1528 |
|
|
1529 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1530 |
0 |
public void setColour(String value)... |
1531 |
|
{ |
1532 |
0 |
this.colour = value; |
1533 |
|
} |
1534 |
|
|
1535 |
|
|
1536 |
|
|
1537 |
|
|
1538 |
|
@return@link |
1539 |
|
|
1540 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1541 |
0 |
public Integer getConsThreshold()... |
1542 |
|
{ |
1543 |
0 |
return consThreshold; |
1544 |
|
} |
1545 |
|
|
1546 |
|
|
1547 |
|
|
1548 |
|
|
1549 |
|
@param |
1550 |
|
@link |
1551 |
|
|
1552 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1553 |
0 |
public void setConsThreshold(Integer value)... |
1554 |
|
{ |
1555 |
0 |
this.consThreshold = value; |
1556 |
|
} |
1557 |
|
|
1558 |
|
|
1559 |
|
|
1560 |
|
|
1561 |
|
@return@link |
1562 |
|
|
1563 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1564 |
0 |
public Integer getPidThreshold()... |
1565 |
|
{ |
1566 |
0 |
return pidThreshold; |
1567 |
|
} |
1568 |
|
|
1569 |
|
|
1570 |
|
|
1571 |
|
|
1572 |
|
@param |
1573 |
|
@link |
1574 |
|
|
1575 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1576 |
0 |
public void setPidThreshold(Integer value)... |
1577 |
|
{ |
1578 |
0 |
this.pidThreshold = value; |
1579 |
|
} |
1580 |
|
|
1581 |
|
|
1582 |
|
|
1583 |
|
|
1584 |
|
@return@link |
1585 |
|
|
1586 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1587 |
0 |
public Integer getOutlineColour()... |
1588 |
|
{ |
1589 |
0 |
return outlineColour; |
1590 |
|
} |
1591 |
|
|
1592 |
|
|
1593 |
|
|
1594 |
|
|
1595 |
|
@param |
1596 |
|
@link |
1597 |
|
|
1598 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1599 |
0 |
public void setOutlineColour(Integer value)... |
1600 |
|
{ |
1601 |
0 |
this.outlineColour = value; |
1602 |
|
} |
1603 |
|
|
1604 |
|
|
1605 |
|
|
1606 |
|
|
1607 |
|
@return@link |
1608 |
|
|
1609 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1610 |
0 |
public Boolean isDisplayBoxes()... |
1611 |
|
{ |
1612 |
0 |
return displayBoxes; |
1613 |
|
} |
1614 |
|
|
1615 |
|
|
1616 |
|
|
1617 |
|
|
1618 |
|
@param |
1619 |
|
@link |
1620 |
|
|
1621 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1622 |
0 |
public void setDisplayBoxes(Boolean value)... |
1623 |
|
{ |
1624 |
0 |
this.displayBoxes = value; |
1625 |
|
} |
1626 |
|
|
1627 |
|
|
1628 |
|
|
1629 |
|
|
1630 |
|
@return@link |
1631 |
|
|
1632 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1633 |
0 |
public Boolean isDisplayText()... |
1634 |
|
{ |
1635 |
0 |
return displayText; |
1636 |
|
} |
1637 |
|
|
1638 |
|
|
1639 |
|
|
1640 |
|
|
1641 |
|
@param |
1642 |
|
@link |
1643 |
|
|
1644 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1645 |
0 |
public void setDisplayText(Boolean value)... |
1646 |
|
{ |
1647 |
0 |
this.displayText = value; |
1648 |
|
} |
1649 |
|
|
1650 |
|
|
1651 |
|
|
1652 |
|
|
1653 |
|
@return@link |
1654 |
|
|
1655 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1656 |
0 |
public Boolean isColourText()... |
1657 |
|
{ |
1658 |
0 |
return colourText; |
1659 |
|
} |
1660 |
|
|
1661 |
|
|
1662 |
|
|
1663 |
|
|
1664 |
|
@param |
1665 |
|
@link |
1666 |
|
|
1667 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1668 |
0 |
public void setColourText(Boolean value)... |
1669 |
|
{ |
1670 |
0 |
this.colourText = value; |
1671 |
|
} |
1672 |
|
|
1673 |
|
|
1674 |
|
|
1675 |
|
|
1676 |
|
@return@link |
1677 |
|
|
1678 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1679 |
0 |
public Integer getTextCol1()... |
1680 |
|
{ |
1681 |
0 |
return textCol1; |
1682 |
|
} |
1683 |
|
|
1684 |
|
|
1685 |
|
|
1686 |
|
|
1687 |
|
@param |
1688 |
|
@link |
1689 |
|
|
1690 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1691 |
0 |
public void setTextCol1(Integer value)... |
1692 |
|
{ |
1693 |
0 |
this.textCol1 = value; |
1694 |
|
} |
1695 |
|
|
1696 |
|
|
1697 |
|
|
1698 |
|
|
1699 |
|
@return@link |
1700 |
|
|
1701 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1702 |
0 |
public Integer getTextCol2()... |
1703 |
|
{ |
1704 |
0 |
return textCol2; |
1705 |
|
} |
1706 |
|
|
1707 |
|
|
1708 |
|
|
1709 |
|
|
1710 |
|
@param |
1711 |
|
@link |
1712 |
|
|
1713 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1714 |
0 |
public void setTextCol2(Integer value)... |
1715 |
|
{ |
1716 |
0 |
this.textCol2 = value; |
1717 |
|
} |
1718 |
|
|
1719 |
|
|
1720 |
|
|
1721 |
|
|
1722 |
|
@return@link |
1723 |
|
|
1724 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1725 |
0 |
public Integer getTextColThreshold()... |
1726 |
|
{ |
1727 |
0 |
return textColThreshold; |
1728 |
|
} |
1729 |
|
|
1730 |
|
|
1731 |
|
|
1732 |
|
|
1733 |
|
@param |
1734 |
|
@link |
1735 |
|
|
1736 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1737 |
0 |
public void setTextColThreshold(Integer value)... |
1738 |
|
{ |
1739 |
0 |
this.textColThreshold = value; |
1740 |
|
} |
1741 |
|
|
1742 |
|
|
1743 |
|
|
1744 |
|
|
1745 |
|
@return@link |
1746 |
|
|
1747 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1748 |
0 |
public Boolean isShowUnconserved()... |
1749 |
|
{ |
1750 |
0 |
return showUnconserved; |
1751 |
|
} |
1752 |
|
|
1753 |
|
|
1754 |
|
|
1755 |
|
|
1756 |
|
@param |
1757 |
|
@link |
1758 |
|
|
1759 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1760 |
0 |
public void setShowUnconserved(Boolean value)... |
1761 |
|
{ |
1762 |
0 |
this.showUnconserved = value; |
1763 |
|
} |
1764 |
|
|
1765 |
|
|
1766 |
|
|
1767 |
|
|
1768 |
|
@return@link |
1769 |
|
|
1770 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1771 |
0 |
public boolean isIgnoreGapsinConsensus()... |
1772 |
|
{ |
1773 |
0 |
if (ignoreGapsinConsensus == null) |
1774 |
|
{ |
1775 |
0 |
return true; |
1776 |
|
} |
1777 |
|
else |
1778 |
|
{ |
1779 |
0 |
return ignoreGapsinConsensus; |
1780 |
|
} |
1781 |
|
} |
1782 |
|
|
1783 |
|
|
1784 |
|
|
1785 |
|
|
1786 |
|
@param |
1787 |
|
@link |
1788 |
|
|
1789 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1790 |
0 |
public void setIgnoreGapsinConsensus(Boolean value)... |
1791 |
|
{ |
1792 |
0 |
this.ignoreGapsinConsensus = value; |
1793 |
|
} |
1794 |
|
|
1795 |
|
|
1796 |
|
|
1797 |
|
|
1798 |
|
@return@link |
1799 |
|
|
1800 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1801 |
0 |
public boolean isShowConsensusHistogram()... |
1802 |
|
{ |
1803 |
0 |
if (showConsensusHistogram == null) |
1804 |
|
{ |
1805 |
0 |
return true; |
1806 |
|
} |
1807 |
|
else |
1808 |
|
{ |
1809 |
0 |
return showConsensusHistogram; |
1810 |
|
} |
1811 |
|
} |
1812 |
|
|
1813 |
|
|
1814 |
|
|
1815 |
|
|
1816 |
|
@param |
1817 |
|
@link |
1818 |
|
|
1819 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1820 |
0 |
public void setShowConsensusHistogram(Boolean value)... |
1821 |
|
{ |
1822 |
0 |
this.showConsensusHistogram = value; |
1823 |
|
} |
1824 |
|
|
1825 |
|
|
1826 |
|
|
1827 |
|
|
1828 |
|
@return@link |
1829 |
|
|
1830 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1831 |
0 |
public boolean isShowSequenceLogo()... |
1832 |
|
{ |
1833 |
0 |
if (showSequenceLogo == null) |
1834 |
|
{ |
1835 |
0 |
return false; |
1836 |
|
} |
1837 |
|
else |
1838 |
|
{ |
1839 |
0 |
return showSequenceLogo; |
1840 |
|
} |
1841 |
|
} |
1842 |
|
|
1843 |
|
|
1844 |
|
|
1845 |
|
|
1846 |
|
@param |
1847 |
|
@link |
1848 |
|
|
1849 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1850 |
0 |
public void setShowSequenceLogo(Boolean value)... |
1851 |
|
{ |
1852 |
0 |
this.showSequenceLogo = value; |
1853 |
|
} |
1854 |
|
|
1855 |
|
|
1856 |
|
|
1857 |
|
|
1858 |
|
@return@link |
1859 |
|
|
1860 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1861 |
0 |
public boolean isNormaliseSequenceLogo()... |
1862 |
|
{ |
1863 |
0 |
if (normaliseSequenceLogo == null) |
1864 |
|
{ |
1865 |
0 |
return false; |
1866 |
|
} |
1867 |
|
else |
1868 |
|
{ |
1869 |
0 |
return normaliseSequenceLogo; |
1870 |
|
} |
1871 |
|
} |
1872 |
|
|
1873 |
|
|
1874 |
|
|
1875 |
|
|
1876 |
|
@param |
1877 |
|
@link |
1878 |
|
|
1879 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1880 |
0 |
public void setNormaliseSequenceLogo(Boolean value)... |
1881 |
|
{ |
1882 |
0 |
this.normaliseSequenceLogo = value; |
1883 |
|
} |
1884 |
|
|
1885 |
|
|
1886 |
|
|
1887 |
|
|
1888 |
|
@return@link |
1889 |
|
|
1890 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1891 |
0 |
public String getId()... |
1892 |
|
{ |
1893 |
0 |
return id; |
1894 |
|
} |
1895 |
|
|
1896 |
|
|
1897 |
|
|
1898 |
|
|
1899 |
|
@param |
1900 |
|
@link |
1901 |
|
|
1902 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1903 |
0 |
public void setId(String value)... |
1904 |
|
{ |
1905 |
0 |
this.id = value; |
1906 |
|
} |
1907 |
|
|
1908 |
|
} |
1909 |
|
|
1910 |
|
|
1911 |
|
|
1912 |
|
|
1913 |
|
|
1914 |
|
|
1915 |
|
|
1916 |
|
|
1917 |
|
|
1918 |
|
|
1919 |
|
|
1920 |
|
|
1921 |
|
|
1922 |
|
|
1923 |
|
|
1924 |
|
|
1925 |
|
|
1926 |
|
|
1927 |
|
|
1928 |
|
|
1929 |
|
|
1930 |
|
|
1931 |
|
|
1932 |
|
|
1933 |
|
|
1934 |
|
|
1935 |
|
|
1936 |
|
|
1937 |
|
|
1938 |
|
|
1939 |
|
|
1940 |
|
|
1941 |
|
|
1942 |
|
|
1943 |
|
|
1944 |
|
|
1945 |
|
|
1946 |
|
|
1947 |
|
|
1948 |
|
|
1949 |
|
|
1950 |
|
|
1951 |
|
|
1952 |
|
|
1953 |
|
|
1954 |
|
|
1955 |
|
|
1956 |
|
|
1957 |
|
|
1958 |
|
|
1959 |
|
|
1960 |
|
|
1961 |
|
|
1962 |
|
|
1963 |
|
|
1964 |
|
|
1965 |
|
|
1966 |
|
|
1967 |
|
|
1968 |
|
|
1969 |
|
|
1970 |
|
|
1971 |
|
|
1972 |
|
|
1973 |
|
|
1974 |
|
|
1975 |
|
|
1976 |
|
|
1977 |
|
|
1978 |
|
|
1979 |
|
|
1980 |
|
|
1981 |
|
|
1982 |
|
|
1983 |
|
|
1984 |
|
|
1985 |
|
|
1986 |
|
|
1987 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
1988 |
|
@XmlType( |
1989 |
|
name = "", |
1990 |
|
propOrder = |
1991 |
|
{ "features", "pdbids", "hiddenSequences", "rnaViewer" }) |
|
|
| 0% |
Uncovered Elements: 48 (48) |
Complexity: 20 |
Complexity Density: 0.83 |
|
1992 |
|
public static class JSeq |
1993 |
|
{ |
1994 |
|
|
1995 |
|
@XmlElement(namespace = "www.jalview.org") |
1996 |
|
protected List<Feature> features; |
1997 |
|
|
1998 |
|
@XmlElement(namespace = "www.jalview.org") |
1999 |
|
protected List<JalviewModel.JSeq.Pdbids> pdbids; |
2000 |
|
|
2001 |
|
@XmlElement(namespace = "www.jalview.org", type = Integer.class) |
2002 |
|
protected List<Integer> hiddenSequences; |
2003 |
|
|
2004 |
|
@XmlElement(namespace = "www.jalview.org") |
2005 |
|
protected List<JalviewModel.JSeq.RnaViewer> rnaViewer; |
2006 |
|
|
2007 |
|
@XmlAttribute(name = "colour") |
2008 |
|
protected Integer colour; |
2009 |
|
|
2010 |
|
@XmlAttribute(name = "start", required = true) |
2011 |
|
protected int start; |
2012 |
|
|
2013 |
|
@XmlAttribute(name = "end", required = true) |
2014 |
|
protected int end; |
2015 |
|
|
2016 |
|
@XmlAttribute(name = "id", required = true) |
2017 |
|
protected String id; |
2018 |
|
|
2019 |
|
@XmlAttribute(name = "hidden") |
2020 |
|
protected Boolean hidden; |
2021 |
|
|
2022 |
|
@XmlAttribute(name = "viewreference") |
2023 |
|
protected Boolean viewreference; |
2024 |
|
|
2025 |
|
|
2026 |
|
|
2027 |
|
|
2028 |
|
|
2029 |
|
|
2030 |
|
|
2031 |
|
|
2032 |
|
|
2033 |
|
|
2034 |
|
|
2035 |
|
|
2036 |
|
|
2037 |
|
|
2038 |
|
@link |
2039 |
|
|
2040 |
|
|
2041 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2042 |
0 |
public List<Feature> getFeatures()... |
2043 |
|
{ |
2044 |
0 |
if (features == null) |
2045 |
|
{ |
2046 |
0 |
features = new ArrayList<Feature>(); |
2047 |
|
} |
2048 |
0 |
return this.features; |
2049 |
|
} |
2050 |
|
|
2051 |
|
|
2052 |
|
|
2053 |
|
|
2054 |
|
|
2055 |
|
|
2056 |
|
|
2057 |
|
|
2058 |
|
|
2059 |
|
|
2060 |
|
|
2061 |
|
|
2062 |
|
|
2063 |
|
|
2064 |
|
@link |
2065 |
|
|
2066 |
|
|
2067 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2068 |
0 |
public List<JalviewModel.JSeq.Pdbids> getPdbids()... |
2069 |
|
{ |
2070 |
0 |
if (pdbids == null) |
2071 |
|
{ |
2072 |
0 |
pdbids = new ArrayList<JalviewModel.JSeq.Pdbids>(); |
2073 |
|
} |
2074 |
0 |
return this.pdbids; |
2075 |
|
} |
2076 |
|
|
2077 |
|
|
2078 |
|
|
2079 |
|
|
2080 |
|
|
2081 |
|
|
2082 |
|
|
2083 |
|
|
2084 |
|
|
2085 |
|
|
2086 |
|
|
2087 |
|
|
2088 |
|
|
2089 |
|
|
2090 |
|
@link |
2091 |
|
|
2092 |
|
|
2093 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2094 |
0 |
public List<Integer> getHiddenSequences()... |
2095 |
|
{ |
2096 |
0 |
if (hiddenSequences == null) |
2097 |
|
{ |
2098 |
0 |
hiddenSequences = new ArrayList<Integer>(); |
2099 |
|
} |
2100 |
0 |
return this.hiddenSequences; |
2101 |
|
} |
2102 |
|
|
2103 |
|
|
2104 |
|
|
2105 |
|
|
2106 |
|
|
2107 |
|
|
2108 |
|
|
2109 |
|
|
2110 |
|
|
2111 |
|
|
2112 |
|
|
2113 |
|
|
2114 |
|
|
2115 |
|
|
2116 |
|
@link |
2117 |
|
|
2118 |
|
|
2119 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2120 |
0 |
public List<JalviewModel.JSeq.RnaViewer> getRnaViewer()... |
2121 |
|
{ |
2122 |
0 |
if (rnaViewer == null) |
2123 |
|
{ |
2124 |
0 |
rnaViewer = new ArrayList<JalviewModel.JSeq.RnaViewer>(); |
2125 |
|
} |
2126 |
0 |
return this.rnaViewer; |
2127 |
|
} |
2128 |
|
|
2129 |
|
|
2130 |
|
|
2131 |
|
|
2132 |
|
@return@link |
2133 |
|
|
2134 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2135 |
0 |
public Integer getColour()... |
2136 |
|
{ |
2137 |
0 |
return colour; |
2138 |
|
} |
2139 |
|
|
2140 |
|
|
2141 |
|
|
2142 |
|
|
2143 |
|
@param |
2144 |
|
@link |
2145 |
|
|
2146 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2147 |
0 |
public void setColour(Integer value)... |
2148 |
|
{ |
2149 |
0 |
this.colour = value; |
2150 |
|
} |
2151 |
|
|
2152 |
|
|
2153 |
|
|
2154 |
|
|
2155 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2156 |
0 |
public int getStart()... |
2157 |
|
{ |
2158 |
0 |
return start; |
2159 |
|
} |
2160 |
|
|
2161 |
|
|
2162 |
|
|
2163 |
|
|
2164 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2165 |
0 |
public void setStart(int value)... |
2166 |
|
{ |
2167 |
0 |
this.start = value; |
2168 |
|
} |
2169 |
|
|
2170 |
|
|
2171 |
|
|
2172 |
|
|
2173 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2174 |
0 |
public int getEnd()... |
2175 |
|
{ |
2176 |
0 |
return end; |
2177 |
|
} |
2178 |
|
|
2179 |
|
|
2180 |
|
|
2181 |
|
|
2182 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2183 |
0 |
public void setEnd(int value)... |
2184 |
|
{ |
2185 |
0 |
this.end = value; |
2186 |
|
} |
2187 |
|
|
2188 |
|
|
2189 |
|
|
2190 |
|
|
2191 |
|
@return@link |
2192 |
|
|
2193 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2194 |
0 |
public String getId()... |
2195 |
|
{ |
2196 |
0 |
return id; |
2197 |
|
} |
2198 |
|
|
2199 |
|
|
2200 |
|
|
2201 |
|
|
2202 |
|
@param |
2203 |
|
@link |
2204 |
|
|
2205 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2206 |
0 |
public void setId(String value)... |
2207 |
|
{ |
2208 |
0 |
this.id = value; |
2209 |
|
} |
2210 |
|
|
2211 |
|
|
2212 |
|
|
2213 |
|
|
2214 |
|
@return@link |
2215 |
|
|
2216 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2217 |
0 |
public Boolean isHidden()... |
2218 |
|
{ |
2219 |
0 |
return hidden; |
2220 |
|
} |
2221 |
|
|
2222 |
|
|
2223 |
|
|
2224 |
|
|
2225 |
|
@param |
2226 |
|
@link |
2227 |
|
|
2228 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2229 |
0 |
public void setHidden(Boolean value)... |
2230 |
|
{ |
2231 |
0 |
this.hidden = value; |
2232 |
|
} |
2233 |
|
|
2234 |
|
|
2235 |
|
|
2236 |
|
|
2237 |
|
@return@link |
2238 |
|
|
2239 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2240 |
0 |
public Boolean isViewreference()... |
2241 |
|
{ |
2242 |
0 |
return viewreference; |
2243 |
|
} |
2244 |
|
|
2245 |
|
|
2246 |
|
|
2247 |
|
|
2248 |
|
@param |
2249 |
|
@link |
2250 |
|
|
2251 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2252 |
0 |
public void setViewreference(Boolean value)... |
2253 |
|
{ |
2254 |
0 |
this.viewreference = value; |
2255 |
|
} |
2256 |
|
|
2257 |
|
|
2258 |
|
|
2259 |
|
|
2260 |
|
|
2261 |
|
|
2262 |
|
|
2263 |
|
|
2264 |
|
|
2265 |
|
|
2266 |
|
|
2267 |
|
|
2268 |
|
|
2269 |
|
|
2270 |
|
|
2271 |
|
|
2272 |
|
|
2273 |
|
|
2274 |
|
|
2275 |
|
|
2276 |
|
|
2277 |
|
|
2278 |
|
|
2279 |
|
|
2280 |
|
|
2281 |
|
|
2282 |
|
|
2283 |
|
|
2284 |
|
|
2285 |
|
|
2286 |
|
|
2287 |
|
|
2288 |
|
|
2289 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
2290 |
|
@XmlType(name = "", propOrder = { "structureState" }) |
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2291 |
|
public static class Pdbids extends Pdbentry |
2292 |
|
{ |
2293 |
|
|
2294 |
|
@XmlElement(namespace = "www.jalview.org") |
2295 |
|
protected List<JalviewModel.JSeq.Pdbids.StructureState> structureState; |
2296 |
|
|
2297 |
|
|
2298 |
|
|
2299 |
|
|
2300 |
|
|
2301 |
|
|
2302 |
|
|
2303 |
|
|
2304 |
|
|
2305 |
|
|
2306 |
|
|
2307 |
|
|
2308 |
|
|
2309 |
|
|
2310 |
|
@link |
2311 |
|
|
2312 |
|
|
2313 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2314 |
0 |
public List<JalviewModel.JSeq.Pdbids.StructureState> getStructureState()... |
2315 |
|
{ |
2316 |
0 |
if (structureState == null) |
2317 |
|
{ |
2318 |
0 |
structureState = new ArrayList<JalviewModel.JSeq.Pdbids.StructureState>(); |
2319 |
|
} |
2320 |
0 |
return this.structureState; |
2321 |
|
} |
2322 |
|
|
2323 |
|
|
2324 |
|
|
2325 |
|
|
2326 |
|
|
2327 |
|
|
2328 |
|
|
2329 |
|
|
2330 |
|
|
2331 |
|
|
2332 |
|
|
2333 |
|
|
2334 |
|
|
2335 |
|
|
2336 |
|
|
2337 |
|
|
2338 |
|
|
2339 |
|
|
2340 |
|
|
2341 |
|
|
2342 |
|
|
2343 |
|
|
2344 |
|
|
2345 |
|
|
2346 |
|
|
2347 |
|
|
2348 |
|
|
2349 |
|
|
2350 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
2351 |
|
@XmlType(name = "", propOrder = { "value" }) |
|
|
| 0% |
Uncovered Elements: 56 (56) |
Complexity: 25 |
Complexity Density: 0.89 |
|
2352 |
|
public static class StructureState |
2353 |
|
{ |
2354 |
|
|
2355 |
|
@XmlValue |
2356 |
|
protected String value; |
2357 |
|
|
2358 |
|
@XmlAttribute(name = "visible") |
2359 |
|
protected Boolean visible; |
2360 |
|
|
2361 |
|
@XmlAttribute(name = "viewId") |
2362 |
|
protected String viewId; |
2363 |
|
|
2364 |
|
@XmlAttribute(name = "alignwithAlignPanel") |
2365 |
|
protected Boolean alignwithAlignPanel; |
2366 |
|
|
2367 |
|
@XmlAttribute(name = "colourwithAlignPanel") |
2368 |
|
protected Boolean colourwithAlignPanel; |
2369 |
|
|
2370 |
|
@XmlAttribute(name = "colourByJmol") |
2371 |
|
protected Boolean colourByJmol; |
2372 |
|
|
2373 |
|
@XmlAttribute(name = "type") |
2374 |
|
protected String type; |
2375 |
|
|
2376 |
|
@XmlAttribute(name = "width") |
2377 |
|
protected Integer width; |
2378 |
|
|
2379 |
|
@XmlAttribute(name = "height") |
2380 |
|
protected Integer height; |
2381 |
|
|
2382 |
|
@XmlAttribute(name = "xpos") |
2383 |
|
protected Integer xpos; |
2384 |
|
|
2385 |
|
@XmlAttribute(name = "ypos") |
2386 |
|
protected Integer ypos; |
2387 |
|
|
2388 |
|
|
2389 |
|
|
2390 |
|
|
2391 |
|
@return@link |
2392 |
|
|
2393 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2394 |
0 |
public String getValue()... |
2395 |
|
{ |
2396 |
0 |
return value; |
2397 |
|
} |
2398 |
|
|
2399 |
|
|
2400 |
|
|
2401 |
|
|
2402 |
|
@param |
2403 |
|
@link |
2404 |
|
|
2405 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2406 |
0 |
public void setValue(String value)... |
2407 |
|
{ |
2408 |
0 |
this.value = value; |
2409 |
|
} |
2410 |
|
|
2411 |
|
|
2412 |
|
|
2413 |
|
|
2414 |
|
@return@link |
2415 |
|
|
2416 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2417 |
0 |
public Boolean isVisible()... |
2418 |
|
{ |
2419 |
0 |
return visible; |
2420 |
|
} |
2421 |
|
|
2422 |
|
|
2423 |
|
|
2424 |
|
|
2425 |
|
@param |
2426 |
|
@link |
2427 |
|
|
2428 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2429 |
0 |
public void setVisible(Boolean value)... |
2430 |
|
{ |
2431 |
0 |
this.visible = value; |
2432 |
|
} |
2433 |
|
|
2434 |
|
|
2435 |
|
|
2436 |
|
|
2437 |
|
@return@link |
2438 |
|
|
2439 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2440 |
0 |
public String getViewId()... |
2441 |
|
{ |
2442 |
0 |
return viewId; |
2443 |
|
} |
2444 |
|
|
2445 |
|
|
2446 |
|
|
2447 |
|
|
2448 |
|
@param |
2449 |
|
@link |
2450 |
|
|
2451 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2452 |
0 |
public void setViewId(String value)... |
2453 |
|
{ |
2454 |
0 |
this.viewId = value; |
2455 |
|
} |
2456 |
|
|
2457 |
|
|
2458 |
|
|
2459 |
|
|
2460 |
|
@return@link |
2461 |
|
|
2462 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2463 |
0 |
public boolean isAlignwithAlignPanel()... |
2464 |
|
{ |
2465 |
0 |
if (alignwithAlignPanel == null) |
2466 |
|
{ |
2467 |
0 |
return true; |
2468 |
|
} |
2469 |
|
else |
2470 |
|
{ |
2471 |
0 |
return alignwithAlignPanel; |
2472 |
|
} |
2473 |
|
} |
2474 |
|
|
2475 |
|
|
2476 |
|
|
2477 |
|
|
2478 |
|
@param |
2479 |
|
@link |
2480 |
|
|
2481 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2482 |
0 |
public void setAlignwithAlignPanel(Boolean value)... |
2483 |
|
{ |
2484 |
0 |
this.alignwithAlignPanel = value; |
2485 |
|
} |
2486 |
|
|
2487 |
|
|
2488 |
|
|
2489 |
|
|
2490 |
|
@return@link |
2491 |
|
|
2492 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2493 |
0 |
public boolean isColourwithAlignPanel()... |
2494 |
|
{ |
2495 |
0 |
if (colourwithAlignPanel == null) |
2496 |
|
{ |
2497 |
0 |
return false; |
2498 |
|
} |
2499 |
|
else |
2500 |
|
{ |
2501 |
0 |
return colourwithAlignPanel; |
2502 |
|
} |
2503 |
|
} |
2504 |
|
|
2505 |
|
|
2506 |
|
|
2507 |
|
|
2508 |
|
@param |
2509 |
|
@link |
2510 |
|
|
2511 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2512 |
0 |
public void setColourwithAlignPanel(Boolean value)... |
2513 |
|
{ |
2514 |
0 |
this.colourwithAlignPanel = value; |
2515 |
|
} |
2516 |
|
|
2517 |
|
|
2518 |
|
|
2519 |
|
|
2520 |
|
@return@link |
2521 |
|
|
2522 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2523 |
0 |
public boolean isColourByJmol()... |
2524 |
|
{ |
2525 |
0 |
if (colourByJmol == null) |
2526 |
|
{ |
2527 |
0 |
return true; |
2528 |
|
} |
2529 |
|
else |
2530 |
|
{ |
2531 |
0 |
return colourByJmol; |
2532 |
|
} |
2533 |
|
} |
2534 |
|
|
2535 |
|
|
2536 |
|
|
2537 |
|
|
2538 |
|
@param |
2539 |
|
@link |
2540 |
|
|
2541 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2542 |
0 |
public void setColourByJmol(Boolean value)... |
2543 |
|
{ |
2544 |
0 |
this.colourByJmol = value; |
2545 |
|
} |
2546 |
|
|
2547 |
|
|
2548 |
|
|
2549 |
|
|
2550 |
|
@return@link |
2551 |
|
|
2552 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2553 |
0 |
public String getType()... |
2554 |
|
{ |
2555 |
0 |
return type; |
2556 |
|
} |
2557 |
|
|
2558 |
|
|
2559 |
|
|
2560 |
|
|
2561 |
|
@param |
2562 |
|
@link |
2563 |
|
|
2564 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2565 |
0 |
public void setType(String value)... |
2566 |
|
{ |
2567 |
0 |
this.type = value; |
2568 |
|
} |
2569 |
|
|
2570 |
|
|
2571 |
|
|
2572 |
|
|
2573 |
|
@return@link |
2574 |
|
|
2575 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2576 |
0 |
public Integer getWidth()... |
2577 |
|
{ |
2578 |
0 |
return width; |
2579 |
|
} |
2580 |
|
|
2581 |
|
|
2582 |
|
|
2583 |
|
|
2584 |
|
@param |
2585 |
|
@link |
2586 |
|
|
2587 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2588 |
0 |
public void setWidth(Integer value)... |
2589 |
|
{ |
2590 |
0 |
this.width = value; |
2591 |
|
} |
2592 |
|
|
2593 |
|
|
2594 |
|
|
2595 |
|
|
2596 |
|
@return@link |
2597 |
|
|
2598 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2599 |
0 |
public Integer getHeight()... |
2600 |
|
{ |
2601 |
0 |
return height; |
2602 |
|
} |
2603 |
|
|
2604 |
|
|
2605 |
|
|
2606 |
|
|
2607 |
|
@param |
2608 |
|
@link |
2609 |
|
|
2610 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2611 |
0 |
public void setHeight(Integer value)... |
2612 |
|
{ |
2613 |
0 |
this.height = value; |
2614 |
|
} |
2615 |
|
|
2616 |
|
|
2617 |
|
|
2618 |
|
|
2619 |
|
@return@link |
2620 |
|
|
2621 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2622 |
0 |
public Integer getXpos()... |
2623 |
|
{ |
2624 |
0 |
return xpos; |
2625 |
|
} |
2626 |
|
|
2627 |
|
|
2628 |
|
|
2629 |
|
|
2630 |
|
@param |
2631 |
|
@link |
2632 |
|
|
2633 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2634 |
0 |
public void setXpos(Integer value)... |
2635 |
|
{ |
2636 |
0 |
this.xpos = value; |
2637 |
|
} |
2638 |
|
|
2639 |
|
|
2640 |
|
|
2641 |
|
|
2642 |
|
@return@link |
2643 |
|
|
2644 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2645 |
0 |
public Integer getYpos()... |
2646 |
|
{ |
2647 |
0 |
return ypos; |
2648 |
|
} |
2649 |
|
|
2650 |
|
|
2651 |
|
|
2652 |
|
|
2653 |
|
@param |
2654 |
|
@link |
2655 |
|
|
2656 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2657 |
0 |
public void setYpos(Integer value)... |
2658 |
|
{ |
2659 |
0 |
this.ypos = value; |
2660 |
|
} |
2661 |
|
|
2662 |
|
} |
2663 |
|
|
2664 |
|
} |
2665 |
|
|
2666 |
|
|
2667 |
|
|
2668 |
|
|
2669 |
|
|
2670 |
|
|
2671 |
|
|
2672 |
|
|
2673 |
|
|
2674 |
|
|
2675 |
|
|
2676 |
|
|
2677 |
|
|
2678 |
|
|
2679 |
|
|
2680 |
|
|
2681 |
|
|
2682 |
|
|
2683 |
|
|
2684 |
|
|
2685 |
|
|
2686 |
|
|
2687 |
|
|
2688 |
|
|
2689 |
|
|
2690 |
|
|
2691 |
|
|
2692 |
|
|
2693 |
|
|
2694 |
|
|
2695 |
|
|
2696 |
|
|
2697 |
|
|
2698 |
|
|
2699 |
|
|
2700 |
|
|
2701 |
|
|
2702 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
2703 |
|
@XmlType(name = "", propOrder = { "secondaryStructure" }) |
|
|
| 0% |
Uncovered Elements: 38 (38) |
Complexity: 18 |
Complexity Density: 0.95 |
|
2704 |
|
public static class RnaViewer |
2705 |
|
{ |
2706 |
|
|
2707 |
|
@XmlElement(namespace = "www.jalview.org", required = true) |
2708 |
|
protected List<JalviewModel.JSeq.RnaViewer.SecondaryStructure> secondaryStructure; |
2709 |
|
|
2710 |
|
@XmlAttribute(name = "title") |
2711 |
|
protected String title; |
2712 |
|
|
2713 |
|
@XmlAttribute(name = "viewId") |
2714 |
|
protected String viewId; |
2715 |
|
|
2716 |
|
@XmlAttribute(name = "dividerLocation") |
2717 |
|
protected Integer dividerLocation; |
2718 |
|
|
2719 |
|
@XmlAttribute(name = "selectedRna") |
2720 |
|
protected Integer selectedRna; |
2721 |
|
|
2722 |
|
@XmlAttribute(name = "width") |
2723 |
|
protected Integer width; |
2724 |
|
|
2725 |
|
@XmlAttribute(name = "height") |
2726 |
|
protected Integer height; |
2727 |
|
|
2728 |
|
@XmlAttribute(name = "xpos") |
2729 |
|
protected Integer xpos; |
2730 |
|
|
2731 |
|
@XmlAttribute(name = "ypos") |
2732 |
|
protected Integer ypos; |
2733 |
|
|
2734 |
|
|
2735 |
|
|
2736 |
|
|
2737 |
|
|
2738 |
|
|
2739 |
|
|
2740 |
|
|
2741 |
|
|
2742 |
|
|
2743 |
|
|
2744 |
|
|
2745 |
|
|
2746 |
|
|
2747 |
|
|
2748 |
|
@link |
2749 |
|
|
2750 |
|
|
2751 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2752 |
0 |
public List<JalviewModel.JSeq.RnaViewer.SecondaryStructure> getSecondaryStructure()... |
2753 |
|
{ |
2754 |
0 |
if (secondaryStructure == null) |
2755 |
|
{ |
2756 |
0 |
secondaryStructure = new ArrayList<JalviewModel.JSeq.RnaViewer.SecondaryStructure>(); |
2757 |
|
} |
2758 |
0 |
return this.secondaryStructure; |
2759 |
|
} |
2760 |
|
|
2761 |
|
|
2762 |
|
|
2763 |
|
|
2764 |
|
@return@link |
2765 |
|
|
2766 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2767 |
0 |
public String getTitle()... |
2768 |
|
{ |
2769 |
0 |
return title; |
2770 |
|
} |
2771 |
|
|
2772 |
|
|
2773 |
|
|
2774 |
|
|
2775 |
|
@param |
2776 |
|
@link |
2777 |
|
|
2778 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2779 |
0 |
public void setTitle(String value)... |
2780 |
|
{ |
2781 |
0 |
this.title = value; |
2782 |
|
} |
2783 |
|
|
2784 |
|
|
2785 |
|
|
2786 |
|
|
2787 |
|
@return@link |
2788 |
|
|
2789 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2790 |
0 |
public String getViewId()... |
2791 |
|
{ |
2792 |
0 |
return viewId; |
2793 |
|
} |
2794 |
|
|
2795 |
|
|
2796 |
|
|
2797 |
|
|
2798 |
|
@param |
2799 |
|
@link |
2800 |
|
|
2801 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2802 |
0 |
public void setViewId(String value)... |
2803 |
|
{ |
2804 |
0 |
this.viewId = value; |
2805 |
|
} |
2806 |
|
|
2807 |
|
|
2808 |
|
|
2809 |
|
|
2810 |
|
@return@link |
2811 |
|
|
2812 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2813 |
0 |
public Integer getDividerLocation()... |
2814 |
|
{ |
2815 |
0 |
return dividerLocation; |
2816 |
|
} |
2817 |
|
|
2818 |
|
|
2819 |
|
|
2820 |
|
|
2821 |
|
@param |
2822 |
|
@link |
2823 |
|
|
2824 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2825 |
0 |
public void setDividerLocation(Integer value)... |
2826 |
|
{ |
2827 |
0 |
this.dividerLocation = value; |
2828 |
|
} |
2829 |
|
|
2830 |
|
|
2831 |
|
|
2832 |
|
|
2833 |
|
@return@link |
2834 |
|
|
2835 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2836 |
0 |
public Integer getSelectedRna()... |
2837 |
|
{ |
2838 |
0 |
return selectedRna; |
2839 |
|
} |
2840 |
|
|
2841 |
|
|
2842 |
|
|
2843 |
|
|
2844 |
|
@param |
2845 |
|
@link |
2846 |
|
|
2847 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2848 |
0 |
public void setSelectedRna(Integer value)... |
2849 |
|
{ |
2850 |
0 |
this.selectedRna = value; |
2851 |
|
} |
2852 |
|
|
2853 |
|
|
2854 |
|
|
2855 |
|
|
2856 |
|
@return@link |
2857 |
|
|
2858 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2859 |
0 |
public Integer getWidth()... |
2860 |
|
{ |
2861 |
0 |
return width; |
2862 |
|
} |
2863 |
|
|
2864 |
|
|
2865 |
|
|
2866 |
|
|
2867 |
|
@param |
2868 |
|
@link |
2869 |
|
|
2870 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2871 |
0 |
public void setWidth(Integer value)... |
2872 |
|
{ |
2873 |
0 |
this.width = value; |
2874 |
|
} |
2875 |
|
|
2876 |
|
|
2877 |
|
|
2878 |
|
|
2879 |
|
@return@link |
2880 |
|
|
2881 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2882 |
0 |
public Integer getHeight()... |
2883 |
|
{ |
2884 |
0 |
return height; |
2885 |
|
} |
2886 |
|
|
2887 |
|
|
2888 |
|
|
2889 |
|
|
2890 |
|
@param |
2891 |
|
@link |
2892 |
|
|
2893 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2894 |
0 |
public void setHeight(Integer value)... |
2895 |
|
{ |
2896 |
0 |
this.height = value; |
2897 |
|
} |
2898 |
|
|
2899 |
|
|
2900 |
|
|
2901 |
|
|
2902 |
|
@return@link |
2903 |
|
|
2904 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2905 |
0 |
public Integer getXpos()... |
2906 |
|
{ |
2907 |
0 |
return xpos; |
2908 |
|
} |
2909 |
|
|
2910 |
|
|
2911 |
|
|
2912 |
|
|
2913 |
|
@param |
2914 |
|
@link |
2915 |
|
|
2916 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2917 |
0 |
public void setXpos(Integer value)... |
2918 |
|
{ |
2919 |
0 |
this.xpos = value; |
2920 |
|
} |
2921 |
|
|
2922 |
|
|
2923 |
|
|
2924 |
|
|
2925 |
|
@return@link |
2926 |
|
|
2927 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2928 |
0 |
public Integer getYpos()... |
2929 |
|
{ |
2930 |
0 |
return ypos; |
2931 |
|
} |
2932 |
|
|
2933 |
|
|
2934 |
|
|
2935 |
|
|
2936 |
|
@param |
2937 |
|
@link |
2938 |
|
|
2939 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2940 |
0 |
public void setYpos(Integer value)... |
2941 |
|
{ |
2942 |
0 |
this.ypos = value; |
2943 |
|
} |
2944 |
|
|
2945 |
|
|
2946 |
|
|
2947 |
|
|
2948 |
|
|
2949 |
|
|
2950 |
|
|
2951 |
|
|
2952 |
|
|
2953 |
|
|
2954 |
|
|
2955 |
|
|
2956 |
|
|
2957 |
|
|
2958 |
|
|
2959 |
|
|
2960 |
|
|
2961 |
|
|
2962 |
|
|
2963 |
|
|
2964 |
|
|
2965 |
|
|
2966 |
|
|
2967 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
2968 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
2969 |
|
public static class SecondaryStructure |
2970 |
|
{ |
2971 |
|
|
2972 |
|
@XmlAttribute(name = "title") |
2973 |
|
protected String title; |
2974 |
|
|
2975 |
|
@XmlAttribute(name = "annotationId", required = true) |
2976 |
|
protected String annotationId; |
2977 |
|
|
2978 |
|
@XmlAttribute(name = "gapped") |
2979 |
|
protected Boolean gapped; |
2980 |
|
|
2981 |
|
@XmlAttribute(name = "viewerState") |
2982 |
|
protected String viewerState; |
2983 |
|
|
2984 |
|
|
2985 |
|
|
2986 |
|
|
2987 |
|
@return@link |
2988 |
|
|
2989 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2990 |
0 |
public String getTitle()... |
2991 |
|
{ |
2992 |
0 |
return title; |
2993 |
|
} |
2994 |
|
|
2995 |
|
|
2996 |
|
|
2997 |
|
|
2998 |
|
@param |
2999 |
|
@link |
3000 |
|
|
3001 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3002 |
0 |
public void setTitle(String value)... |
3003 |
|
{ |
3004 |
0 |
this.title = value; |
3005 |
|
} |
3006 |
|
|
3007 |
|
|
3008 |
|
|
3009 |
|
|
3010 |
|
@return@link |
3011 |
|
|
3012 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3013 |
0 |
public String getAnnotationId()... |
3014 |
|
{ |
3015 |
0 |
return annotationId; |
3016 |
|
} |
3017 |
|
|
3018 |
|
|
3019 |
|
|
3020 |
|
|
3021 |
|
@param |
3022 |
|
@link |
3023 |
|
|
3024 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3025 |
0 |
public void setAnnotationId(String value)... |
3026 |
|
{ |
3027 |
0 |
this.annotationId = value; |
3028 |
|
} |
3029 |
|
|
3030 |
|
|
3031 |
|
|
3032 |
|
|
3033 |
|
@return@link |
3034 |
|
|
3035 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3036 |
0 |
public Boolean isGapped()... |
3037 |
|
{ |
3038 |
0 |
return gapped; |
3039 |
|
} |
3040 |
|
|
3041 |
|
|
3042 |
|
|
3043 |
|
|
3044 |
|
@param |
3045 |
|
@link |
3046 |
|
|
3047 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3048 |
0 |
public void setGapped(Boolean value)... |
3049 |
|
{ |
3050 |
0 |
this.gapped = value; |
3051 |
|
} |
3052 |
|
|
3053 |
|
|
3054 |
|
|
3055 |
|
|
3056 |
|
@return@link |
3057 |
|
|
3058 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3059 |
0 |
public String getViewerState()... |
3060 |
|
{ |
3061 |
0 |
return viewerState; |
3062 |
|
} |
3063 |
|
|
3064 |
|
|
3065 |
|
|
3066 |
|
|
3067 |
|
@param |
3068 |
|
@link |
3069 |
|
|
3070 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3071 |
0 |
public void setViewerState(String value)... |
3072 |
|
{ |
3073 |
0 |
this.viewerState = value; |
3074 |
|
} |
3075 |
|
|
3076 |
|
} |
3077 |
|
|
3078 |
|
} |
3079 |
|
|
3080 |
|
} |
3081 |
|
|
3082 |
|
|
3083 |
|
|
3084 |
|
|
3085 |
|
|
3086 |
|
|
3087 |
|
|
3088 |
|
|
3089 |
|
|
3090 |
|
|
3091 |
|
|
3092 |
|
|
3093 |
|
|
3094 |
|
|
3095 |
|
|
3096 |
|
|
3097 |
|
|
3098 |
|
|
3099 |
|
|
3100 |
|
|
3101 |
|
|
3102 |
|
|
3103 |
|
|
3104 |
|
|
3105 |
|
|
3106 |
|
|
3107 |
|
|
3108 |
|
|
3109 |
|
|
3110 |
|
|
3111 |
|
|
3112 |
|
|
3113 |
|
|
3114 |
|
|
3115 |
|
|
3116 |
|
|
3117 |
|
|
3118 |
|
|
3119 |
|
|
3120 |
|
|
3121 |
|
|
3122 |
|
|
3123 |
|
|
3124 |
|
|
3125 |
|
|
3126 |
|
|
3127 |
|
|
3128 |
|
|
3129 |
|
|
3130 |
|
|
3131 |
|
|
3132 |
|
|
3133 |
|
|
3134 |
|
|
3135 |
|
|
3136 |
|
|
3137 |
|
|
3138 |
|
|
3139 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
3140 |
|
@XmlType( |
3141 |
|
name = "", |
3142 |
|
propOrder = |
3143 |
|
{ "sequencePoint", "axis", "seqPointMin", "seqPointMax", "pcaData" }) |
|
|
| 0% |
Uncovered Elements: 92 (92) |
Complexity: 44 |
Complexity Density: 0.96 |
|
3144 |
|
public static class PcaViewer |
3145 |
|
{ |
3146 |
|
|
3147 |
|
@XmlElement(namespace = "www.jalview.org", required = true) |
3148 |
|
protected List<JalviewModel.PcaViewer.SequencePoint> sequencePoint; |
3149 |
|
|
3150 |
|
@XmlElement(namespace = "www.jalview.org", required = true) |
3151 |
|
protected List<JalviewModel.PcaViewer.Axis> axis; |
3152 |
|
|
3153 |
|
@XmlElement(namespace = "www.jalview.org", required = true) |
3154 |
|
protected JalviewModel.PcaViewer.SeqPointMin seqPointMin; |
3155 |
|
|
3156 |
|
@XmlElement(namespace = "www.jalview.org", required = true) |
3157 |
|
protected JalviewModel.PcaViewer.SeqPointMax seqPointMax; |
3158 |
|
|
3159 |
|
@XmlElement(namespace = "www.jalview.org", required = true) |
3160 |
|
protected PcaDataType pcaData; |
3161 |
|
|
3162 |
|
@XmlAttribute(name = "title") |
3163 |
|
protected String title; |
3164 |
|
|
3165 |
|
@XmlAttribute(name = "scoreModelName") |
3166 |
|
protected String scoreModelName; |
3167 |
|
|
3168 |
|
@XmlAttribute(name = "xDim") |
3169 |
|
protected Integer xDim; |
3170 |
|
|
3171 |
|
@XmlAttribute(name = "yDim") |
3172 |
|
protected Integer yDim; |
3173 |
|
|
3174 |
|
@XmlAttribute(name = "zDim") |
3175 |
|
protected Integer zDim; |
3176 |
|
|
3177 |
|
@XmlAttribute(name = "bgColour") |
3178 |
|
protected Integer bgColour; |
3179 |
|
|
3180 |
|
@XmlAttribute(name = "scaleFactor") |
3181 |
|
protected Float scaleFactor; |
3182 |
|
|
3183 |
|
@XmlAttribute(name = "showLabels") |
3184 |
|
protected Boolean showLabels; |
3185 |
|
|
3186 |
|
@XmlAttribute(name = "linkToAllViews") |
3187 |
|
protected Boolean linkToAllViews; |
3188 |
|
|
3189 |
|
@XmlAttribute(name = "includeGaps") |
3190 |
|
protected Boolean includeGaps; |
3191 |
|
|
3192 |
|
@XmlAttribute(name = "matchGaps") |
3193 |
|
protected Boolean matchGaps; |
3194 |
|
|
3195 |
|
@XmlAttribute(name = "includeGappedColumns") |
3196 |
|
protected Boolean includeGappedColumns; |
3197 |
|
|
3198 |
|
@XmlAttribute(name = "denominateByShortestLength") |
3199 |
|
protected Boolean denominateByShortestLength; |
3200 |
|
|
3201 |
|
@XmlAttribute(name = "width") |
3202 |
|
protected Integer width; |
3203 |
|
|
3204 |
|
@XmlAttribute(name = "height") |
3205 |
|
protected Integer height; |
3206 |
|
|
3207 |
|
@XmlAttribute(name = "xpos") |
3208 |
|
protected Integer xpos; |
3209 |
|
|
3210 |
|
@XmlAttribute(name = "ypos") |
3211 |
|
protected Integer ypos; |
3212 |
|
|
3213 |
|
|
3214 |
|
|
3215 |
|
|
3216 |
|
|
3217 |
|
|
3218 |
|
|
3219 |
|
|
3220 |
|
|
3221 |
|
|
3222 |
|
|
3223 |
|
|
3224 |
|
|
3225 |
|
|
3226 |
|
@link |
3227 |
|
|
3228 |
|
|
3229 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
3230 |
0 |
public List<JalviewModel.PcaViewer.SequencePoint> getSequencePoint()... |
3231 |
|
{ |
3232 |
0 |
if (sequencePoint == null) |
3233 |
|
{ |
3234 |
0 |
sequencePoint = new ArrayList<JalviewModel.PcaViewer.SequencePoint>(); |
3235 |
|
} |
3236 |
0 |
return this.sequencePoint; |
3237 |
|
} |
3238 |
|
|
3239 |
|
|
3240 |
|
|
3241 |
|
|
3242 |
|
|
3243 |
|
|
3244 |
|
|
3245 |
|
|
3246 |
|
|
3247 |
|
|
3248 |
|
|
3249 |
|
|
3250 |
|
|
3251 |
|
|
3252 |
|
@link |
3253 |
|
|
3254 |
|
|
3255 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
3256 |
0 |
public List<JalviewModel.PcaViewer.Axis> getAxis()... |
3257 |
|
{ |
3258 |
0 |
if (axis == null) |
3259 |
|
{ |
3260 |
0 |
axis = new ArrayList<JalviewModel.PcaViewer.Axis>(); |
3261 |
|
} |
3262 |
0 |
return this.axis; |
3263 |
|
} |
3264 |
|
|
3265 |
|
|
3266 |
|
|
3267 |
|
|
3268 |
|
@return@link |
3269 |
|
|
3270 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3271 |
0 |
public JalviewModel.PcaViewer.SeqPointMin getSeqPointMin()... |
3272 |
|
{ |
3273 |
0 |
return seqPointMin; |
3274 |
|
} |
3275 |
|
|
3276 |
|
|
3277 |
|
|
3278 |
|
|
3279 |
|
@param |
3280 |
|
@link |
3281 |
|
|
3282 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3283 |
0 |
public void setSeqPointMin(JalviewModel.PcaViewer.SeqPointMin value)... |
3284 |
|
{ |
3285 |
0 |
this.seqPointMin = value; |
3286 |
|
} |
3287 |
|
|
3288 |
|
|
3289 |
|
|
3290 |
|
|
3291 |
|
@return@link |
3292 |
|
|
3293 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3294 |
0 |
public JalviewModel.PcaViewer.SeqPointMax getSeqPointMax()... |
3295 |
|
{ |
3296 |
0 |
return seqPointMax; |
3297 |
|
} |
3298 |
|
|
3299 |
|
|
3300 |
|
|
3301 |
|
|
3302 |
|
@param |
3303 |
|
@link |
3304 |
|
|
3305 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3306 |
0 |
public void setSeqPointMax(JalviewModel.PcaViewer.SeqPointMax value)... |
3307 |
|
{ |
3308 |
0 |
this.seqPointMax = value; |
3309 |
|
} |
3310 |
|
|
3311 |
|
|
3312 |
|
|
3313 |
|
|
3314 |
|
@return@link |
3315 |
|
|
3316 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3317 |
0 |
public PcaDataType getPcaData()... |
3318 |
|
{ |
3319 |
0 |
return pcaData; |
3320 |
|
} |
3321 |
|
|
3322 |
|
|
3323 |
|
|
3324 |
|
|
3325 |
|
@param |
3326 |
|
@link |
3327 |
|
|
3328 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3329 |
0 |
public void setPcaData(PcaDataType value)... |
3330 |
|
{ |
3331 |
0 |
this.pcaData = value; |
3332 |
|
} |
3333 |
|
|
3334 |
|
|
3335 |
|
|
3336 |
|
|
3337 |
|
@return@link |
3338 |
|
|
3339 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3340 |
0 |
public String getTitle()... |
3341 |
|
{ |
3342 |
0 |
return title; |
3343 |
|
} |
3344 |
|
|
3345 |
|
|
3346 |
|
|
3347 |
|
|
3348 |
|
@param |
3349 |
|
@link |
3350 |
|
|
3351 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3352 |
0 |
public void setTitle(String value)... |
3353 |
|
{ |
3354 |
0 |
this.title = value; |
3355 |
|
} |
3356 |
|
|
3357 |
|
|
3358 |
|
|
3359 |
|
|
3360 |
|
@return@link |
3361 |
|
|
3362 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3363 |
0 |
public String getScoreModelName()... |
3364 |
|
{ |
3365 |
0 |
return scoreModelName; |
3366 |
|
} |
3367 |
|
|
3368 |
|
|
3369 |
|
|
3370 |
|
|
3371 |
|
@param |
3372 |
|
@link |
3373 |
|
|
3374 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3375 |
0 |
public void setScoreModelName(String value)... |
3376 |
|
{ |
3377 |
0 |
this.scoreModelName = value; |
3378 |
|
} |
3379 |
|
|
3380 |
|
|
3381 |
|
|
3382 |
|
|
3383 |
|
@return@link |
3384 |
|
|
3385 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3386 |
0 |
public Integer getXDim()... |
3387 |
|
{ |
3388 |
0 |
return xDim; |
3389 |
|
} |
3390 |
|
|
3391 |
|
|
3392 |
|
|
3393 |
|
|
3394 |
|
@param |
3395 |
|
@link |
3396 |
|
|
3397 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3398 |
0 |
public void setXDim(Integer value)... |
3399 |
|
{ |
3400 |
0 |
this.xDim = value; |
3401 |
|
} |
3402 |
|
|
3403 |
|
|
3404 |
|
|
3405 |
|
|
3406 |
|
@return@link |
3407 |
|
|
3408 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3409 |
0 |
public Integer getYDim()... |
3410 |
|
{ |
3411 |
0 |
return yDim; |
3412 |
|
} |
3413 |
|
|
3414 |
|
|
3415 |
|
|
3416 |
|
|
3417 |
|
@param |
3418 |
|
@link |
3419 |
|
|
3420 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3421 |
0 |
public void setYDim(Integer value)... |
3422 |
|
{ |
3423 |
0 |
this.yDim = value; |
3424 |
|
} |
3425 |
|
|
3426 |
|
|
3427 |
|
|
3428 |
|
|
3429 |
|
@return@link |
3430 |
|
|
3431 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3432 |
0 |
public Integer getZDim()... |
3433 |
|
{ |
3434 |
0 |
return zDim; |
3435 |
|
} |
3436 |
|
|
3437 |
|
|
3438 |
|
|
3439 |
|
|
3440 |
|
@param |
3441 |
|
@link |
3442 |
|
|
3443 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3444 |
0 |
public void setZDim(Integer value)... |
3445 |
|
{ |
3446 |
0 |
this.zDim = value; |
3447 |
|
} |
3448 |
|
|
3449 |
|
|
3450 |
|
|
3451 |
|
|
3452 |
|
@return@link |
3453 |
|
|
3454 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3455 |
0 |
public Integer getBgColour()... |
3456 |
|
{ |
3457 |
0 |
return bgColour; |
3458 |
|
} |
3459 |
|
|
3460 |
|
|
3461 |
|
|
3462 |
|
|
3463 |
|
@param |
3464 |
|
@link |
3465 |
|
|
3466 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3467 |
0 |
public void setBgColour(Integer value)... |
3468 |
|
{ |
3469 |
0 |
this.bgColour = value; |
3470 |
|
} |
3471 |
|
|
3472 |
|
|
3473 |
|
|
3474 |
|
|
3475 |
|
@return@link |
3476 |
|
|
3477 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3478 |
0 |
public Float getScaleFactor()... |
3479 |
|
{ |
3480 |
0 |
return scaleFactor; |
3481 |
|
} |
3482 |
|
|
3483 |
|
|
3484 |
|
|
3485 |
|
|
3486 |
|
@param |
3487 |
|
@link |
3488 |
|
|
3489 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3490 |
0 |
public void setScaleFactor(Float value)... |
3491 |
|
{ |
3492 |
0 |
this.scaleFactor = value; |
3493 |
|
} |
3494 |
|
|
3495 |
|
|
3496 |
|
|
3497 |
|
|
3498 |
|
@return@link |
3499 |
|
|
3500 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3501 |
0 |
public Boolean isShowLabels()... |
3502 |
|
{ |
3503 |
0 |
return showLabels; |
3504 |
|
} |
3505 |
|
|
3506 |
|
|
3507 |
|
|
3508 |
|
|
3509 |
|
@param |
3510 |
|
@link |
3511 |
|
|
3512 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3513 |
0 |
public void setShowLabels(Boolean value)... |
3514 |
|
{ |
3515 |
0 |
this.showLabels = value; |
3516 |
|
} |
3517 |
|
|
3518 |
|
|
3519 |
|
|
3520 |
|
|
3521 |
|
@return@link |
3522 |
|
|
3523 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3524 |
0 |
public Boolean isLinkToAllViews()... |
3525 |
|
{ |
3526 |
0 |
return linkToAllViews; |
3527 |
|
} |
3528 |
|
|
3529 |
|
|
3530 |
|
|
3531 |
|
|
3532 |
|
@param |
3533 |
|
@link |
3534 |
|
|
3535 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3536 |
0 |
public void setLinkToAllViews(Boolean value)... |
3537 |
|
{ |
3538 |
0 |
this.linkToAllViews = value; |
3539 |
|
} |
3540 |
|
|
3541 |
|
|
3542 |
|
|
3543 |
|
|
3544 |
|
@return@link |
3545 |
|
|
3546 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3547 |
0 |
public Boolean isIncludeGaps()... |
3548 |
|
{ |
3549 |
0 |
return includeGaps; |
3550 |
|
} |
3551 |
|
|
3552 |
|
|
3553 |
|
|
3554 |
|
|
3555 |
|
@param |
3556 |
|
@link |
3557 |
|
|
3558 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3559 |
0 |
public void setIncludeGaps(Boolean value)... |
3560 |
|
{ |
3561 |
0 |
this.includeGaps = value; |
3562 |
|
} |
3563 |
|
|
3564 |
|
|
3565 |
|
|
3566 |
|
|
3567 |
|
@return@link |
3568 |
|
|
3569 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3570 |
0 |
public Boolean isMatchGaps()... |
3571 |
|
{ |
3572 |
0 |
return matchGaps; |
3573 |
|
} |
3574 |
|
|
3575 |
|
|
3576 |
|
|
3577 |
|
|
3578 |
|
@param |
3579 |
|
@link |
3580 |
|
|
3581 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3582 |
0 |
public void setMatchGaps(Boolean value)... |
3583 |
|
{ |
3584 |
0 |
this.matchGaps = value; |
3585 |
|
} |
3586 |
|
|
3587 |
|
|
3588 |
|
|
3589 |
|
|
3590 |
|
@return@link |
3591 |
|
|
3592 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3593 |
0 |
public Boolean isIncludeGappedColumns()... |
3594 |
|
{ |
3595 |
0 |
return includeGappedColumns; |
3596 |
|
} |
3597 |
|
|
3598 |
|
|
3599 |
|
|
3600 |
|
|
3601 |
|
@param |
3602 |
|
@link |
3603 |
|
|
3604 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3605 |
0 |
public void setIncludeGappedColumns(Boolean value)... |
3606 |
|
{ |
3607 |
0 |
this.includeGappedColumns = value; |
3608 |
|
} |
3609 |
|
|
3610 |
|
|
3611 |
|
|
3612 |
|
|
3613 |
|
@return@link |
3614 |
|
|
3615 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3616 |
0 |
public Boolean isDenominateByShortestLength()... |
3617 |
|
{ |
3618 |
0 |
return denominateByShortestLength; |
3619 |
|
} |
3620 |
|
|
3621 |
|
|
3622 |
|
|
3623 |
|
|
3624 |
|
@param |
3625 |
|
@link |
3626 |
|
|
3627 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3628 |
0 |
public void setDenominateByShortestLength(Boolean value)... |
3629 |
|
{ |
3630 |
0 |
this.denominateByShortestLength = value; |
3631 |
|
} |
3632 |
|
|
3633 |
|
|
3634 |
|
|
3635 |
|
|
3636 |
|
@return@link |
3637 |
|
|
3638 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3639 |
0 |
public Integer getWidth()... |
3640 |
|
{ |
3641 |
0 |
return width; |
3642 |
|
} |
3643 |
|
|
3644 |
|
|
3645 |
|
|
3646 |
|
|
3647 |
|
@param |
3648 |
|
@link |
3649 |
|
|
3650 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3651 |
0 |
public void setWidth(Integer value)... |
3652 |
|
{ |
3653 |
0 |
this.width = value; |
3654 |
|
} |
3655 |
|
|
3656 |
|
|
3657 |
|
|
3658 |
|
|
3659 |
|
@return@link |
3660 |
|
|
3661 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3662 |
0 |
public Integer getHeight()... |
3663 |
|
{ |
3664 |
0 |
return height; |
3665 |
|
} |
3666 |
|
|
3667 |
|
|
3668 |
|
|
3669 |
|
|
3670 |
|
@param |
3671 |
|
@link |
3672 |
|
|
3673 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3674 |
0 |
public void setHeight(Integer value)... |
3675 |
|
{ |
3676 |
0 |
this.height = value; |
3677 |
|
} |
3678 |
|
|
3679 |
|
|
3680 |
|
|
3681 |
|
|
3682 |
|
@return@link |
3683 |
|
|
3684 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3685 |
0 |
public Integer getXpos()... |
3686 |
|
{ |
3687 |
0 |
return xpos; |
3688 |
|
} |
3689 |
|
|
3690 |
|
|
3691 |
|
|
3692 |
|
|
3693 |
|
@param |
3694 |
|
@link |
3695 |
|
|
3696 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3697 |
0 |
public void setXpos(Integer value)... |
3698 |
|
{ |
3699 |
0 |
this.xpos = value; |
3700 |
|
} |
3701 |
|
|
3702 |
|
|
3703 |
|
|
3704 |
|
|
3705 |
|
@return@link |
3706 |
|
|
3707 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3708 |
0 |
public Integer getYpos()... |
3709 |
|
{ |
3710 |
0 |
return ypos; |
3711 |
|
} |
3712 |
|
|
3713 |
|
|
3714 |
|
|
3715 |
|
|
3716 |
|
@param |
3717 |
|
@link |
3718 |
|
|
3719 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3720 |
0 |
public void setYpos(Integer value)... |
3721 |
|
{ |
3722 |
0 |
this.ypos = value; |
3723 |
|
} |
3724 |
|
|
3725 |
|
|
3726 |
|
|
3727 |
|
|
3728 |
|
|
3729 |
|
|
3730 |
|
|
3731 |
|
|
3732 |
|
|
3733 |
|
|
3734 |
|
|
3735 |
|
|
3736 |
|
|
3737 |
|
|
3738 |
|
|
3739 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
3740 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
3741 |
|
public static class Axis |
3742 |
|
{ |
3743 |
|
|
3744 |
|
@XmlAttribute(name = "xPos") |
3745 |
|
protected Float xPos; |
3746 |
|
|
3747 |
|
@XmlAttribute(name = "yPos") |
3748 |
|
protected Float yPos; |
3749 |
|
|
3750 |
|
@XmlAttribute(name = "zPos") |
3751 |
|
protected Float zPos; |
3752 |
|
|
3753 |
|
|
3754 |
|
|
3755 |
|
|
3756 |
|
@return@link |
3757 |
|
|
3758 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3759 |
0 |
public Float getXPos()... |
3760 |
|
{ |
3761 |
0 |
return xPos; |
3762 |
|
} |
3763 |
|
|
3764 |
|
|
3765 |
|
|
3766 |
|
|
3767 |
|
@param |
3768 |
|
@link |
3769 |
|
|
3770 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3771 |
0 |
public void setXPos(Float value)... |
3772 |
|
{ |
3773 |
0 |
this.xPos = value; |
3774 |
|
} |
3775 |
|
|
3776 |
|
|
3777 |
|
|
3778 |
|
|
3779 |
|
@return@link |
3780 |
|
|
3781 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3782 |
0 |
public Float getYPos()... |
3783 |
|
{ |
3784 |
0 |
return yPos; |
3785 |
|
} |
3786 |
|
|
3787 |
|
|
3788 |
|
|
3789 |
|
|
3790 |
|
@param |
3791 |
|
@link |
3792 |
|
|
3793 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3794 |
0 |
public void setYPos(Float value)... |
3795 |
|
{ |
3796 |
0 |
this.yPos = value; |
3797 |
|
} |
3798 |
|
|
3799 |
|
|
3800 |
|
|
3801 |
|
|
3802 |
|
@return@link |
3803 |
|
|
3804 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3805 |
0 |
public Float getZPos()... |
3806 |
|
{ |
3807 |
0 |
return zPos; |
3808 |
|
} |
3809 |
|
|
3810 |
|
|
3811 |
|
|
3812 |
|
|
3813 |
|
@param |
3814 |
|
@link |
3815 |
|
|
3816 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3817 |
0 |
public void setZPos(Float value)... |
3818 |
|
{ |
3819 |
0 |
this.zPos = value; |
3820 |
|
} |
3821 |
|
|
3822 |
|
} |
3823 |
|
|
3824 |
|
|
3825 |
|
|
3826 |
|
|
3827 |
|
|
3828 |
|
|
3829 |
|
|
3830 |
|
|
3831 |
|
|
3832 |
|
|
3833 |
|
|
3834 |
|
|
3835 |
|
|
3836 |
|
|
3837 |
|
|
3838 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
3839 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
3840 |
|
public static class SeqPointMax |
3841 |
|
{ |
3842 |
|
|
3843 |
|
@XmlAttribute(name = "xPos") |
3844 |
|
protected Float xPos; |
3845 |
|
|
3846 |
|
@XmlAttribute(name = "yPos") |
3847 |
|
protected Float yPos; |
3848 |
|
|
3849 |
|
@XmlAttribute(name = "zPos") |
3850 |
|
protected Float zPos; |
3851 |
|
|
3852 |
|
|
3853 |
|
|
3854 |
|
|
3855 |
|
@return@link |
3856 |
|
|
3857 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3858 |
0 |
public Float getXPos()... |
3859 |
|
{ |
3860 |
0 |
return xPos; |
3861 |
|
} |
3862 |
|
|
3863 |
|
|
3864 |
|
|
3865 |
|
|
3866 |
|
@param |
3867 |
|
@link |
3868 |
|
|
3869 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3870 |
0 |
public void setXPos(Float value)... |
3871 |
|
{ |
3872 |
0 |
this.xPos = value; |
3873 |
|
} |
3874 |
|
|
3875 |
|
|
3876 |
|
|
3877 |
|
|
3878 |
|
@return@link |
3879 |
|
|
3880 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3881 |
0 |
public Float getYPos()... |
3882 |
|
{ |
3883 |
0 |
return yPos; |
3884 |
|
} |
3885 |
|
|
3886 |
|
|
3887 |
|
|
3888 |
|
|
3889 |
|
@param |
3890 |
|
@link |
3891 |
|
|
3892 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3893 |
0 |
public void setYPos(Float value)... |
3894 |
|
{ |
3895 |
0 |
this.yPos = value; |
3896 |
|
} |
3897 |
|
|
3898 |
|
|
3899 |
|
|
3900 |
|
|
3901 |
|
@return@link |
3902 |
|
|
3903 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3904 |
0 |
public Float getZPos()... |
3905 |
|
{ |
3906 |
0 |
return zPos; |
3907 |
|
} |
3908 |
|
|
3909 |
|
|
3910 |
|
|
3911 |
|
|
3912 |
|
@param |
3913 |
|
@link |
3914 |
|
|
3915 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3916 |
0 |
public void setZPos(Float value)... |
3917 |
|
{ |
3918 |
0 |
this.zPos = value; |
3919 |
|
} |
3920 |
|
|
3921 |
|
} |
3922 |
|
|
3923 |
|
|
3924 |
|
|
3925 |
|
|
3926 |
|
|
3927 |
|
|
3928 |
|
|
3929 |
|
|
3930 |
|
|
3931 |
|
|
3932 |
|
|
3933 |
|
|
3934 |
|
|
3935 |
|
|
3936 |
|
|
3937 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
3938 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
3939 |
|
public static class SeqPointMin |
3940 |
|
{ |
3941 |
|
|
3942 |
|
@XmlAttribute(name = "xPos") |
3943 |
|
protected Float xPos; |
3944 |
|
|
3945 |
|
@XmlAttribute(name = "yPos") |
3946 |
|
protected Float yPos; |
3947 |
|
|
3948 |
|
@XmlAttribute(name = "zPos") |
3949 |
|
protected Float zPos; |
3950 |
|
|
3951 |
|
|
3952 |
|
|
3953 |
|
|
3954 |
|
@return@link |
3955 |
|
|
3956 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3957 |
0 |
public Float getXPos()... |
3958 |
|
{ |
3959 |
0 |
return xPos; |
3960 |
|
} |
3961 |
|
|
3962 |
|
|
3963 |
|
|
3964 |
|
|
3965 |
|
@param |
3966 |
|
@link |
3967 |
|
|
3968 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3969 |
0 |
public void setXPos(Float value)... |
3970 |
|
{ |
3971 |
0 |
this.xPos = value; |
3972 |
|
} |
3973 |
|
|
3974 |
|
|
3975 |
|
|
3976 |
|
|
3977 |
|
@return@link |
3978 |
|
|
3979 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3980 |
0 |
public Float getYPos()... |
3981 |
|
{ |
3982 |
0 |
return yPos; |
3983 |
|
} |
3984 |
|
|
3985 |
|
|
3986 |
|
|
3987 |
|
|
3988 |
|
@param |
3989 |
|
@link |
3990 |
|
|
3991 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3992 |
0 |
public void setYPos(Float value)... |
3993 |
|
{ |
3994 |
0 |
this.yPos = value; |
3995 |
|
} |
3996 |
|
|
3997 |
|
|
3998 |
|
|
3999 |
|
|
4000 |
|
@return@link |
4001 |
|
|
4002 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4003 |
0 |
public Float getZPos()... |
4004 |
|
{ |
4005 |
0 |
return zPos; |
4006 |
|
} |
4007 |
|
|
4008 |
|
|
4009 |
|
|
4010 |
|
|
4011 |
|
@param |
4012 |
|
@link |
4013 |
|
|
4014 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4015 |
0 |
public void setZPos(Float value)... |
4016 |
|
{ |
4017 |
0 |
this.zPos = value; |
4018 |
|
} |
4019 |
|
|
4020 |
|
} |
4021 |
|
|
4022 |
|
|
4023 |
|
|
4024 |
|
|
4025 |
|
|
4026 |
|
|
4027 |
|
|
4028 |
|
|
4029 |
|
|
4030 |
|
|
4031 |
|
|
4032 |
|
|
4033 |
|
|
4034 |
|
|
4035 |
|
|
4036 |
|
|
4037 |
|
|
4038 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
4039 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
4040 |
|
public static class SequencePoint |
4041 |
|
{ |
4042 |
|
|
4043 |
|
@XmlAttribute(name = "sequenceRef") |
4044 |
|
protected String sequenceRef; |
4045 |
|
|
4046 |
|
@XmlAttribute(name = "xPos") |
4047 |
|
protected Float xPos; |
4048 |
|
|
4049 |
|
@XmlAttribute(name = "yPos") |
4050 |
|
protected Float yPos; |
4051 |
|
|
4052 |
|
@XmlAttribute(name = "zPos") |
4053 |
|
protected Float zPos; |
4054 |
|
|
4055 |
|
|
4056 |
|
|
4057 |
|
|
4058 |
|
@return@link |
4059 |
|
|
4060 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4061 |
0 |
public String getSequenceRef()... |
4062 |
|
{ |
4063 |
0 |
return sequenceRef; |
4064 |
|
} |
4065 |
|
|
4066 |
|
|
4067 |
|
|
4068 |
|
|
4069 |
|
@param |
4070 |
|
@link |
4071 |
|
|
4072 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4073 |
0 |
public void setSequenceRef(String value)... |
4074 |
|
{ |
4075 |
0 |
this.sequenceRef = value; |
4076 |
|
} |
4077 |
|
|
4078 |
|
|
4079 |
|
|
4080 |
|
|
4081 |
|
@return@link |
4082 |
|
|
4083 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4084 |
0 |
public Float getXPos()... |
4085 |
|
{ |
4086 |
0 |
return xPos; |
4087 |
|
} |
4088 |
|
|
4089 |
|
|
4090 |
|
|
4091 |
|
|
4092 |
|
@param |
4093 |
|
@link |
4094 |
|
|
4095 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4096 |
0 |
public void setXPos(Float value)... |
4097 |
|
{ |
4098 |
0 |
this.xPos = value; |
4099 |
|
} |
4100 |
|
|
4101 |
|
|
4102 |
|
|
4103 |
|
|
4104 |
|
@return@link |
4105 |
|
|
4106 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4107 |
0 |
public Float getYPos()... |
4108 |
|
{ |
4109 |
0 |
return yPos; |
4110 |
|
} |
4111 |
|
|
4112 |
|
|
4113 |
|
|
4114 |
|
|
4115 |
|
@param |
4116 |
|
@link |
4117 |
|
|
4118 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4119 |
0 |
public void setYPos(Float value)... |
4120 |
|
{ |
4121 |
0 |
this.yPos = value; |
4122 |
|
} |
4123 |
|
|
4124 |
|
|
4125 |
|
|
4126 |
|
|
4127 |
|
@return@link |
4128 |
|
|
4129 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4130 |
0 |
public Float getZPos()... |
4131 |
|
{ |
4132 |
0 |
return zPos; |
4133 |
|
} |
4134 |
|
|
4135 |
|
|
4136 |
|
|
4137 |
|
|
4138 |
|
@param |
4139 |
|
@link |
4140 |
|
|
4141 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4142 |
0 |
public void setZPos(Float value)... |
4143 |
|
{ |
4144 |
0 |
this.zPos = value; |
4145 |
|
} |
4146 |
|
|
4147 |
|
} |
4148 |
|
|
4149 |
|
} |
4150 |
|
|
4151 |
|
|
4152 |
|
|
4153 |
|
|
4154 |
|
|
4155 |
|
|
4156 |
|
|
4157 |
|
|
4158 |
|
|
4159 |
|
|
4160 |
|
|
4161 |
|
|
4162 |
|
|
4163 |
|
|
4164 |
|
|
4165 |
|
|
4166 |
|
|
4167 |
|
|
4168 |
|
|
4169 |
|
|
4170 |
|
|
4171 |
|
|
4172 |
|
|
4173 |
|
|
4174 |
|
|
4175 |
|
|
4176 |
|
|
4177 |
|
|
4178 |
|
|
4179 |
|
|
4180 |
|
|
4181 |
|
|
4182 |
|
|
4183 |
|
|
4184 |
|
|
4185 |
|
|
4186 |
|
|
4187 |
|
|
4188 |
|
|
4189 |
|
|
4190 |
|
|
4191 |
|
|
4192 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
4193 |
|
@XmlType(name = "", propOrder = { "title", "newick" }) |
|
|
| 0% |
Uncovered Elements: 84 (84) |
Complexity: 40 |
Complexity Density: 0.95 |
|
4194 |
|
public static class Tree |
4195 |
|
{ |
4196 |
|
|
4197 |
|
@XmlElement(namespace = "www.jalview.org") |
4198 |
|
protected String title; |
4199 |
|
|
4200 |
|
@XmlElement(namespace = "www.jalview.org") |
4201 |
|
protected String newick; |
4202 |
|
|
4203 |
|
@XmlAttribute(name = "fontName") |
4204 |
|
protected String fontName; |
4205 |
|
|
4206 |
|
@XmlAttribute(name = "fontSize") |
4207 |
|
protected Integer fontSize; |
4208 |
|
|
4209 |
|
@XmlAttribute(name = "fontStyle") |
4210 |
|
protected Integer fontStyle; |
4211 |
|
|
4212 |
|
@XmlAttribute(name = "threshold") |
4213 |
|
protected Float threshold; |
4214 |
|
|
4215 |
|
@XmlAttribute(name = "showBootstrap") |
4216 |
|
protected Boolean showBootstrap; |
4217 |
|
|
4218 |
|
@XmlAttribute(name = "showDistances") |
4219 |
|
protected Boolean showDistances; |
4220 |
|
|
4221 |
|
@XmlAttribute(name = "markUnlinked") |
4222 |
|
protected Boolean markUnlinked; |
4223 |
|
|
4224 |
|
@XmlAttribute(name = "fitToWindow") |
4225 |
|
protected Boolean fitToWindow; |
4226 |
|
|
4227 |
|
@XmlAttribute(name = "currentTree") |
4228 |
|
protected Boolean currentTree; |
4229 |
|
|
4230 |
|
@XmlAttribute(name = "columnWise") |
4231 |
|
protected Boolean columnWise; |
4232 |
|
|
4233 |
|
@XmlAttribute(name = "columnReference") |
4234 |
|
protected String columnReference; |
4235 |
|
|
4236 |
|
@XmlAttribute(name = "id") |
4237 |
|
@XmlJavaTypeAdapter(CollapsedStringAdapter.class) |
4238 |
|
@XmlID |
4239 |
|
@XmlSchemaType(name = "ID") |
4240 |
|
protected String id; |
4241 |
|
|
4242 |
|
@XmlAttribute(name = "linkToAllViews") |
4243 |
|
protected Boolean linkToAllViews; |
4244 |
|
|
4245 |
|
@XmlAttribute(name = "width") |
4246 |
|
protected Integer width; |
4247 |
|
|
4248 |
|
@XmlAttribute(name = "height") |
4249 |
|
protected Integer height; |
4250 |
|
|
4251 |
|
@XmlAttribute(name = "xpos") |
4252 |
|
protected Integer xpos; |
4253 |
|
|
4254 |
|
@XmlAttribute(name = "ypos") |
4255 |
|
protected Integer ypos; |
4256 |
|
|
4257 |
|
|
4258 |
|
|
4259 |
|
|
4260 |
|
@return@link |
4261 |
|
|
4262 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4263 |
0 |
public String getTitle()... |
4264 |
|
{ |
4265 |
0 |
return title; |
4266 |
|
} |
4267 |
|
|
4268 |
|
|
4269 |
|
|
4270 |
|
|
4271 |
|
@param |
4272 |
|
@link |
4273 |
|
|
4274 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4275 |
0 |
public void setTitle(String value)... |
4276 |
|
{ |
4277 |
0 |
this.title = value; |
4278 |
|
} |
4279 |
|
|
4280 |
|
|
4281 |
|
|
4282 |
|
|
4283 |
|
@return@link |
4284 |
|
|
4285 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4286 |
0 |
public String getNewick()... |
4287 |
|
{ |
4288 |
0 |
return newick; |
4289 |
|
} |
4290 |
|
|
4291 |
|
|
4292 |
|
|
4293 |
|
|
4294 |
|
@param |
4295 |
|
@link |
4296 |
|
|
4297 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4298 |
0 |
public void setNewick(String value)... |
4299 |
|
{ |
4300 |
0 |
this.newick = value; |
4301 |
|
} |
4302 |
|
|
4303 |
|
|
4304 |
|
|
4305 |
|
|
4306 |
|
@return@link |
4307 |
|
|
4308 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4309 |
0 |
public String getFontName()... |
4310 |
|
{ |
4311 |
0 |
return fontName; |
4312 |
|
} |
4313 |
|
|
4314 |
|
|
4315 |
|
|
4316 |
|
|
4317 |
|
@param |
4318 |
|
@link |
4319 |
|
|
4320 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4321 |
0 |
public void setFontName(String value)... |
4322 |
|
{ |
4323 |
0 |
this.fontName = value; |
4324 |
|
} |
4325 |
|
|
4326 |
|
|
4327 |
|
|
4328 |
|
|
4329 |
|
@return@link |
4330 |
|
|
4331 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4332 |
0 |
public Integer getFontSize()... |
4333 |
|
{ |
4334 |
0 |
return fontSize; |
4335 |
|
} |
4336 |
|
|
4337 |
|
|
4338 |
|
|
4339 |
|
|
4340 |
|
@param |
4341 |
|
@link |
4342 |
|
|
4343 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4344 |
0 |
public void setFontSize(Integer value)... |
4345 |
|
{ |
4346 |
0 |
this.fontSize = value; |
4347 |
|
} |
4348 |
|
|
4349 |
|
|
4350 |
|
|
4351 |
|
|
4352 |
|
@return@link |
4353 |
|
|
4354 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4355 |
0 |
public Integer getFontStyle()... |
4356 |
|
{ |
4357 |
0 |
return fontStyle; |
4358 |
|
} |
4359 |
|
|
4360 |
|
|
4361 |
|
|
4362 |
|
|
4363 |
|
@param |
4364 |
|
@link |
4365 |
|
|
4366 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4367 |
0 |
public void setFontStyle(Integer value)... |
4368 |
|
{ |
4369 |
0 |
this.fontStyle = value; |
4370 |
|
} |
4371 |
|
|
4372 |
|
|
4373 |
|
|
4374 |
|
|
4375 |
|
@return@link |
4376 |
|
|
4377 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4378 |
0 |
public Float getThreshold()... |
4379 |
|
{ |
4380 |
0 |
return threshold; |
4381 |
|
} |
4382 |
|
|
4383 |
|
|
4384 |
|
|
4385 |
|
|
4386 |
|
@param |
4387 |
|
@link |
4388 |
|
|
4389 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4390 |
0 |
public void setThreshold(Float value)... |
4391 |
|
{ |
4392 |
0 |
this.threshold = value; |
4393 |
|
} |
4394 |
|
|
4395 |
|
|
4396 |
|
|
4397 |
|
|
4398 |
|
@return@link |
4399 |
|
|
4400 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4401 |
0 |
public Boolean isShowBootstrap()... |
4402 |
|
{ |
4403 |
0 |
return showBootstrap; |
4404 |
|
} |
4405 |
|
|
4406 |
|
|
4407 |
|
|
4408 |
|
|
4409 |
|
@param |
4410 |
|
@link |
4411 |
|
|
4412 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4413 |
0 |
public void setShowBootstrap(Boolean value)... |
4414 |
|
{ |
4415 |
0 |
this.showBootstrap = value; |
4416 |
|
} |
4417 |
|
|
4418 |
|
|
4419 |
|
|
4420 |
|
|
4421 |
|
@return@link |
4422 |
|
|
4423 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4424 |
0 |
public Boolean isShowDistances()... |
4425 |
|
{ |
4426 |
0 |
return showDistances; |
4427 |
|
} |
4428 |
|
|
4429 |
|
|
4430 |
|
|
4431 |
|
|
4432 |
|
@param |
4433 |
|
@link |
4434 |
|
|
4435 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4436 |
0 |
public void setShowDistances(Boolean value)... |
4437 |
|
{ |
4438 |
0 |
this.showDistances = value; |
4439 |
|
} |
4440 |
|
|
4441 |
|
|
4442 |
|
|
4443 |
|
|
4444 |
|
@return@link |
4445 |
|
|
4446 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4447 |
0 |
public Boolean isMarkUnlinked()... |
4448 |
|
{ |
4449 |
0 |
return markUnlinked; |
4450 |
|
} |
4451 |
|
|
4452 |
|
|
4453 |
|
|
4454 |
|
|
4455 |
|
@param |
4456 |
|
@link |
4457 |
|
|
4458 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4459 |
0 |
public void setMarkUnlinked(Boolean value)... |
4460 |
|
{ |
4461 |
0 |
this.markUnlinked = value; |
4462 |
|
} |
4463 |
|
|
4464 |
|
|
4465 |
|
|
4466 |
|
|
4467 |
|
@return@link |
4468 |
|
|
4469 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4470 |
0 |
public Boolean isFitToWindow()... |
4471 |
|
{ |
4472 |
0 |
return fitToWindow; |
4473 |
|
} |
4474 |
|
|
4475 |
|
|
4476 |
|
|
4477 |
|
|
4478 |
|
@param |
4479 |
|
@link |
4480 |
|
|
4481 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4482 |
0 |
public void setFitToWindow(Boolean value)... |
4483 |
|
{ |
4484 |
0 |
this.fitToWindow = value; |
4485 |
|
} |
4486 |
|
|
4487 |
|
|
4488 |
|
|
4489 |
|
|
4490 |
|
@return@link |
4491 |
|
|
4492 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4493 |
0 |
public Boolean isCurrentTree()... |
4494 |
|
{ |
4495 |
0 |
return currentTree; |
4496 |
|
} |
4497 |
|
|
4498 |
|
|
4499 |
|
|
4500 |
|
|
4501 |
|
@param |
4502 |
|
@link |
4503 |
|
|
4504 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4505 |
0 |
public void setCurrentTree(Boolean value)... |
4506 |
|
{ |
4507 |
0 |
this.currentTree = value; |
4508 |
|
} |
4509 |
|
|
4510 |
|
|
4511 |
|
|
4512 |
|
|
4513 |
|
@return@link |
4514 |
|
|
4515 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
4516 |
0 |
public boolean isColumnWise()... |
4517 |
|
{ |
4518 |
0 |
if (columnWise == null) |
4519 |
|
{ |
4520 |
0 |
return false; |
4521 |
|
} |
4522 |
|
else |
4523 |
|
{ |
4524 |
0 |
return columnWise; |
4525 |
|
} |
4526 |
|
} |
4527 |
|
|
4528 |
|
|
4529 |
|
|
4530 |
|
|
4531 |
|
@param |
4532 |
|
@link |
4533 |
|
|
4534 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4535 |
0 |
public void setColumnWise(Boolean value)... |
4536 |
|
{ |
4537 |
0 |
this.columnWise = value; |
4538 |
|
} |
4539 |
|
|
4540 |
|
|
4541 |
|
|
4542 |
|
|
4543 |
|
@return@link |
4544 |
|
|
4545 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4546 |
0 |
public String getColumnReference()... |
4547 |
|
{ |
4548 |
0 |
return columnReference; |
4549 |
|
} |
4550 |
|
|
4551 |
|
|
4552 |
|
|
4553 |
|
|
4554 |
|
@param |
4555 |
|
@link |
4556 |
|
|
4557 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4558 |
0 |
public void setColumnReference(String value)... |
4559 |
|
{ |
4560 |
0 |
this.columnReference = value; |
4561 |
|
} |
4562 |
|
|
4563 |
|
|
4564 |
|
|
4565 |
|
|
4566 |
|
@return@link |
4567 |
|
|
4568 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4569 |
0 |
public String getId()... |
4570 |
|
{ |
4571 |
0 |
return id; |
4572 |
|
} |
4573 |
|
|
4574 |
|
|
4575 |
|
|
4576 |
|
|
4577 |
|
@param |
4578 |
|
@link |
4579 |
|
|
4580 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4581 |
0 |
public void setId(String value)... |
4582 |
|
{ |
4583 |
0 |
this.id = value; |
4584 |
|
} |
4585 |
|
|
4586 |
|
|
4587 |
|
|
4588 |
|
|
4589 |
|
@return@link |
4590 |
|
|
4591 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
4592 |
0 |
public boolean isLinkToAllViews()... |
4593 |
|
{ |
4594 |
0 |
if (linkToAllViews == null) |
4595 |
|
{ |
4596 |
0 |
return false; |
4597 |
|
} |
4598 |
|
else |
4599 |
|
{ |
4600 |
0 |
return linkToAllViews; |
4601 |
|
} |
4602 |
|
} |
4603 |
|
|
4604 |
|
|
4605 |
|
|
4606 |
|
|
4607 |
|
@param |
4608 |
|
@link |
4609 |
|
|
4610 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4611 |
0 |
public void setLinkToAllViews(Boolean value)... |
4612 |
|
{ |
4613 |
0 |
this.linkToAllViews = value; |
4614 |
|
} |
4615 |
|
|
4616 |
|
|
4617 |
|
|
4618 |
|
|
4619 |
|
@return@link |
4620 |
|
|
4621 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4622 |
0 |
public Integer getWidth()... |
4623 |
|
{ |
4624 |
0 |
return width; |
4625 |
|
} |
4626 |
|
|
4627 |
|
|
4628 |
|
|
4629 |
|
|
4630 |
|
@param |
4631 |
|
@link |
4632 |
|
|
4633 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4634 |
0 |
public void setWidth(Integer value)... |
4635 |
|
{ |
4636 |
0 |
this.width = value; |
4637 |
|
} |
4638 |
|
|
4639 |
|
|
4640 |
|
|
4641 |
|
|
4642 |
|
@return@link |
4643 |
|
|
4644 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4645 |
0 |
public Integer getHeight()... |
4646 |
|
{ |
4647 |
0 |
return height; |
4648 |
|
} |
4649 |
|
|
4650 |
|
|
4651 |
|
|
4652 |
|
|
4653 |
|
@param |
4654 |
|
@link |
4655 |
|
|
4656 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4657 |
0 |
public void setHeight(Integer value)... |
4658 |
|
{ |
4659 |
0 |
this.height = value; |
4660 |
|
} |
4661 |
|
|
4662 |
|
|
4663 |
|
|
4664 |
|
|
4665 |
|
@return@link |
4666 |
|
|
4667 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4668 |
0 |
public Integer getXpos()... |
4669 |
|
{ |
4670 |
0 |
return xpos; |
4671 |
|
} |
4672 |
|
|
4673 |
|
|
4674 |
|
|
4675 |
|
|
4676 |
|
@param |
4677 |
|
@link |
4678 |
|
|
4679 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4680 |
0 |
public void setXpos(Integer value)... |
4681 |
|
{ |
4682 |
0 |
this.xpos = value; |
4683 |
|
} |
4684 |
|
|
4685 |
|
|
4686 |
|
|
4687 |
|
|
4688 |
|
@return@link |
4689 |
|
|
4690 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4691 |
0 |
public Integer getYpos()... |
4692 |
|
{ |
4693 |
0 |
return ypos; |
4694 |
|
} |
4695 |
|
|
4696 |
|
|
4697 |
|
|
4698 |
|
|
4699 |
|
@param |
4700 |
|
@link |
4701 |
|
|
4702 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4703 |
0 |
public void setYpos(Integer value)... |
4704 |
|
{ |
4705 |
0 |
this.ypos = value; |
4706 |
|
} |
4707 |
|
|
4708 |
|
} |
4709 |
|
|
4710 |
|
|
4711 |
|
|
4712 |
|
|
4713 |
|
|
4714 |
|
|
4715 |
|
|
4716 |
|
|
4717 |
|
|
4718 |
|
|
4719 |
|
|
4720 |
|
|
4721 |
|
|
4722 |
|
|
4723 |
|
|
4724 |
|
|
4725 |
|
|
4726 |
|
|
4727 |
|
|
4728 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
4729 |
|
@XmlType(name = "", propOrder = { "userColourScheme" }) |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
4730 |
|
public static class UserColours |
4731 |
|
{ |
4732 |
|
|
4733 |
|
@XmlElement( |
4734 |
|
name = "UserColourScheme", |
4735 |
|
namespace = "www.jalview.org", |
4736 |
|
required = true) |
4737 |
|
protected JalviewUserColours userColourScheme; |
4738 |
|
|
4739 |
|
@XmlAttribute(name = "id") |
4740 |
|
protected String id; |
4741 |
|
|
4742 |
|
|
4743 |
|
|
4744 |
|
|
4745 |
|
@return@link |
4746 |
|
|
4747 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4748 |
0 |
public JalviewUserColours getUserColourScheme()... |
4749 |
|
{ |
4750 |
0 |
return userColourScheme; |
4751 |
|
} |
4752 |
|
|
4753 |
|
|
4754 |
|
|
4755 |
|
|
4756 |
|
@param |
4757 |
|
@link |
4758 |
|
|
4759 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4760 |
0 |
public void setUserColourScheme(JalviewUserColours value)... |
4761 |
|
{ |
4762 |
0 |
this.userColourScheme = value; |
4763 |
|
} |
4764 |
|
|
4765 |
|
|
4766 |
|
|
4767 |
|
|
4768 |
|
@return@link |
4769 |
|
|
4770 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4771 |
0 |
public String getId()... |
4772 |
|
{ |
4773 |
0 |
return id; |
4774 |
|
} |
4775 |
|
|
4776 |
|
|
4777 |
|
|
4778 |
|
|
4779 |
|
@param |
4780 |
|
@link |
4781 |
|
|
4782 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
4783 |
0 |
public void setId(String value)... |
4784 |
|
{ |
4785 |
0 |
this.id = value; |
4786 |
|
} |
4787 |
|
|
4788 |
|
} |
4789 |
|
|
4790 |
|
|
4791 |
|
|
4792 |
|
|
4793 |
|
|
4794 |
|
|
4795 |
|
|
4796 |
|
|
4797 |
|
|
4798 |
|
|
4799 |
|
|
4800 |
|
|
4801 |
|
|
4802 |
|
|
4803 |
|
|
4804 |
|
|
4805 |
|
|
4806 |
|
|
4807 |
|
|
4808 |
|
|
4809 |
|
|
4810 |
|
|
4811 |
|
|
4812 |
|
|
4813 |
|
|
4814 |
|
|
4815 |
|
|
4816 |
|
|
4817 |
|
|
4818 |
|
|
4819 |
|
|
4820 |
|
|
4821 |
|
|
4822 |
|
|
4823 |
|
|
4824 |
|
|
4825 |
|
|
4826 |
|
|
4827 |
|
|
4828 |
|
|
4829 |
|
|
4830 |
|
|
4831 |
|
|
4832 |
|
|
4833 |
|
|
4834 |
|
|
4835 |
|
|
4836 |
|
|
4837 |
|
|
4838 |
|
|
4839 |
|
|
4840 |
|
|
4841 |
|
|
4842 |
|
|
4843 |
|
|
4844 |
|
|
4845 |
|
|
4846 |
|
|
4847 |
|
|
4848 |
|
|
4849 |
|
|
4850 |
|
|
4851 |
|
|
4852 |
|
|
4853 |
|
|
4854 |
|
|
4855 |
|
|
4856 |
|
|
4857 |
|
|
4858 |
|
|
4859 |
|
|
4860 |
|
|
4861 |
|
|
4862 |
|
|
4863 |
|
|
4864 |
|
|
4865 |
|
|
4866 |
|
|
4867 |
|
|
4868 |
|
|
4869 |
|
|
4870 |
|
|
4871 |
|
|
4872 |
|
|
4873 |
|
|
4874 |
|
|
4875 |
|
|
4876 |
|
|
4877 |
|
|
4878 |
|
|
4879 |
|
|
4880 |
|
|
4881 |
|
|
4882 |
|
|
4883 |
|
|
4884 |
|
|
4885 |
|
|
4886 |
|
|
4887 |
|
|
4888 |
|
|
4889 |
|
|
4890 |
|
|
4891 |
|
|
4892 |
|
|
4893 |
|
|
4894 |
|
|
4895 |
|
|
4896 |
|
|
4897 |
|
|
4898 |
|
|
4899 |
|
|
4900 |
|
|
4901 |
|
|
4902 |
|
|
4903 |
|
|
4904 |
|
|
4905 |
|
|
4906 |
|
|
4907 |
|
|
4908 |
|
|
4909 |
|
|
4910 |
|
|
4911 |
|
|
4912 |
|
|
4913 |
|
|
4914 |
|
|
4915 |
|
|
4916 |
|
|
4917 |
|
|
4918 |
|
|
4919 |
|
|
4920 |
|
|
4921 |
|
|
4922 |
|
|
4923 |
|
|
4924 |
|
|
4925 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
4926 |
|
@XmlType( |
4927 |
|
name = "", |
4928 |
|
propOrder = |
4929 |
|
{ "annotationColours", "hiddenColumns", "calcIdParam", "overview" }) |
|
|
| 0% |
Uncovered Elements: 276 (276) |
Complexity: 123 |
Complexity Density: 0.89 |
|
4930 |
|
public static class Viewport |
4931 |
|
{ |
4932 |
|
|
4933 |
|
@XmlElement(name = "AnnotationColours", namespace = "www.jalview.org") |
4934 |
|
protected AnnotationColourScheme annotationColours; |
4935 |
|
|
4936 |
|
@XmlElement(namespace = "www.jalview.org") |
4937 |
|
protected List<JalviewModel.Viewport.HiddenColumns> hiddenColumns; |
4938 |
|
|
4939 |
|
@XmlElement(namespace = "www.jalview.org") |
4940 |
|
protected List<JalviewModel.Viewport.CalcIdParam> calcIdParam; |
4941 |
|
|
4942 |
|
@XmlElement(namespace = "www.jalview.org") |
4943 |
|
protected JalviewModel.Viewport.Overview overview; |
4944 |
|
|
4945 |
|
@XmlAttribute(name = "conservationSelected") |
4946 |
|
protected Boolean conservationSelected; |
4947 |
|
|
4948 |
|
@XmlAttribute(name = "pidSelected") |
4949 |
|
protected Boolean pidSelected; |
4950 |
|
|
4951 |
|
@XmlAttribute(name = "bgColour") |
4952 |
|
protected String bgColour; |
4953 |
|
|
4954 |
|
@XmlAttribute(name = "consThreshold") |
4955 |
|
protected Integer consThreshold; |
4956 |
|
|
4957 |
|
@XmlAttribute(name = "pidThreshold") |
4958 |
|
protected Integer pidThreshold; |
4959 |
|
|
4960 |
|
@XmlAttribute(name = "title") |
4961 |
|
protected String title; |
4962 |
|
|
4963 |
|
@XmlAttribute(name = "showFullId") |
4964 |
|
protected Boolean showFullId; |
4965 |
|
|
4966 |
|
@XmlAttribute(name = "rightAlignIds") |
4967 |
|
protected Boolean rightAlignIds; |
4968 |
|
|
4969 |
|
@XmlAttribute(name = "showText") |
4970 |
|
protected Boolean showText; |
4971 |
|
|
4972 |
|
@XmlAttribute(name = "showColourText") |
4973 |
|
protected Boolean showColourText; |
4974 |
|
|
4975 |
|
@XmlAttribute(name = "showUnconserved") |
4976 |
|
protected Boolean showUnconserved; |
4977 |
|
|
4978 |
|
@XmlAttribute(name = "showBoxes") |
4979 |
|
protected Boolean showBoxes; |
4980 |
|
|
4981 |
|
@XmlAttribute(name = "wrapAlignment") |
4982 |
|
protected Boolean wrapAlignment; |
4983 |
|
|
4984 |
|
@XmlAttribute(name = "renderGaps") |
4985 |
|
protected Boolean renderGaps; |
4986 |
|
|
4987 |
|
@XmlAttribute(name = "showSequenceFeatures") |
4988 |
|
protected Boolean showSequenceFeatures; |
4989 |
|
|
4990 |
|
@XmlAttribute(name = "showNPfeatureTooltip") |
4991 |
|
protected Boolean showNPfeatureTooltip; |
4992 |
|
|
4993 |
|
@XmlAttribute(name = "showDbRefTooltip") |
4994 |
|
protected Boolean showDbRefTooltip; |
4995 |
|
|
4996 |
|
@XmlAttribute(name = "followHighlight") |
4997 |
|
protected Boolean followHighlight; |
4998 |
|
|
4999 |
|
@XmlAttribute(name = "followSelection") |
5000 |
|
protected Boolean followSelection; |
5001 |
|
|
5002 |
|
@XmlAttribute(name = "showAnnotation") |
5003 |
|
protected Boolean showAnnotation; |
5004 |
|
|
5005 |
|
@XmlAttribute(name = "centreColumnLabels") |
5006 |
|
protected Boolean centreColumnLabels; |
5007 |
|
|
5008 |
|
@XmlAttribute(name = "showGroupConservation") |
5009 |
|
protected Boolean showGroupConservation; |
5010 |
|
|
5011 |
|
@XmlAttribute(name = "showGroupConsensus") |
5012 |
|
protected Boolean showGroupConsensus; |
5013 |
|
|
5014 |
|
@XmlAttribute(name = "showConsensusHistogram") |
5015 |
|
protected Boolean showConsensusHistogram; |
5016 |
|
|
5017 |
|
@XmlAttribute(name = "showSequenceLogo") |
5018 |
|
protected Boolean showSequenceLogo; |
5019 |
|
|
5020 |
|
@XmlAttribute(name = "normaliseSequenceLogo") |
5021 |
|
protected Boolean normaliseSequenceLogo; |
5022 |
|
|
5023 |
|
@XmlAttribute(name = "ignoreGapsinConsensus") |
5024 |
|
protected Boolean ignoreGapsinConsensus; |
5025 |
|
|
5026 |
|
@XmlAttribute(name = "startRes") |
5027 |
|
protected Integer startRes; |
5028 |
|
|
5029 |
|
@XmlAttribute(name = "startSeq") |
5030 |
|
protected Integer startSeq; |
5031 |
|
|
5032 |
|
@XmlAttribute(name = "charWidth") |
5033 |
|
protected Integer charWidth; |
5034 |
|
|
5035 |
|
@XmlAttribute(name = "charHeight") |
5036 |
|
protected Integer charHeight; |
5037 |
|
|
5038 |
|
@XmlAttribute(name = "fontName") |
5039 |
|
protected String fontName; |
5040 |
|
|
5041 |
|
@XmlAttribute(name = "fontSize") |
5042 |
|
protected Integer fontSize; |
5043 |
|
|
5044 |
|
@XmlAttribute(name = "fontStyle") |
5045 |
|
protected Integer fontStyle; |
5046 |
|
|
5047 |
|
@XmlAttribute(name = "idWidth") |
5048 |
|
protected Integer idWidth; |
5049 |
|
|
5050 |
|
@XmlAttribute(name = "idWidthManuallyAdjusted") |
5051 |
|
protected Boolean idWidthManuallyAdjusted; |
5052 |
|
|
5053 |
|
@XmlAttribute(name = "scaleProteinAsCdna") |
5054 |
|
protected Boolean scaleProteinAsCdna; |
5055 |
|
|
5056 |
|
@XmlAttribute(name = "viewName") |
5057 |
|
protected String viewName; |
5058 |
|
|
5059 |
|
@XmlAttribute(name = "sequenceSetId") |
5060 |
|
protected String sequenceSetId; |
5061 |
|
|
5062 |
|
@XmlAttribute(name = "gatheredViews") |
5063 |
|
protected Boolean gatheredViews; |
5064 |
|
|
5065 |
|
@XmlAttribute(name = "textCol1") |
5066 |
|
protected Integer textCol1; |
5067 |
|
|
5068 |
|
@XmlAttribute(name = "textCol2") |
5069 |
|
protected Integer textCol2; |
5070 |
|
|
5071 |
|
@XmlAttribute(name = "textColThreshold") |
5072 |
|
protected Integer textColThreshold; |
5073 |
|
|
5074 |
|
@XmlAttribute(name = "id") |
5075 |
|
@XmlJavaTypeAdapter(CollapsedStringAdapter.class) |
5076 |
|
@XmlID |
5077 |
|
@XmlSchemaType(name = "ID") |
5078 |
|
protected String id; |
5079 |
|
|
5080 |
|
@XmlAttribute(name = "complementId") |
5081 |
|
protected String complementId; |
5082 |
|
|
5083 |
|
@XmlAttribute(name = "showComplementFeatures") |
5084 |
|
protected Boolean showComplementFeatures; |
5085 |
|
|
5086 |
|
@XmlAttribute(name = "showComplementFeaturesOnTop") |
5087 |
|
protected Boolean showComplementFeaturesOnTop; |
5088 |
|
|
5089 |
|
@XmlAttribute(name = "width") |
5090 |
|
protected Integer width; |
5091 |
|
|
5092 |
|
@XmlAttribute(name = "height") |
5093 |
|
protected Integer height; |
5094 |
|
|
5095 |
|
@XmlAttribute(name = "xpos") |
5096 |
|
protected Integer xpos; |
5097 |
|
|
5098 |
|
@XmlAttribute(name = "ypos") |
5099 |
|
protected Integer ypos; |
5100 |
|
|
5101 |
|
|
5102 |
|
|
5103 |
|
|
5104 |
|
@return@link |
5105 |
|
|
5106 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5107 |
0 |
public AnnotationColourScheme getAnnotationColours()... |
5108 |
|
{ |
5109 |
0 |
return annotationColours; |
5110 |
|
} |
5111 |
|
|
5112 |
|
|
5113 |
|
|
5114 |
|
|
5115 |
|
@param |
5116 |
|
@link |
5117 |
|
|
5118 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5119 |
0 |
public void setAnnotationColours(AnnotationColourScheme value)... |
5120 |
|
{ |
5121 |
0 |
this.annotationColours = value; |
5122 |
|
} |
5123 |
|
|
5124 |
|
|
5125 |
|
|
5126 |
|
|
5127 |
|
|
5128 |
|
|
5129 |
|
|
5130 |
|
|
5131 |
|
|
5132 |
|
|
5133 |
|
|
5134 |
|
|
5135 |
|
|
5136 |
|
|
5137 |
|
@link |
5138 |
|
|
5139 |
|
|
5140 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5141 |
0 |
public List<JalviewModel.Viewport.HiddenColumns> getHiddenColumns()... |
5142 |
|
{ |
5143 |
0 |
if (hiddenColumns == null) |
5144 |
|
{ |
5145 |
0 |
hiddenColumns = new ArrayList<JalviewModel.Viewport.HiddenColumns>(); |
5146 |
|
} |
5147 |
0 |
return this.hiddenColumns; |
5148 |
|
} |
5149 |
|
|
5150 |
|
|
5151 |
|
|
5152 |
|
|
5153 |
|
|
5154 |
|
|
5155 |
|
|
5156 |
|
|
5157 |
|
|
5158 |
|
|
5159 |
|
|
5160 |
|
|
5161 |
|
|
5162 |
|
|
5163 |
|
@link |
5164 |
|
|
5165 |
|
|
5166 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5167 |
0 |
public List<JalviewModel.Viewport.CalcIdParam> getCalcIdParam()... |
5168 |
|
{ |
5169 |
0 |
if (calcIdParam == null) |
5170 |
|
{ |
5171 |
0 |
calcIdParam = new ArrayList<JalviewModel.Viewport.CalcIdParam>(); |
5172 |
|
} |
5173 |
0 |
return this.calcIdParam; |
5174 |
|
} |
5175 |
|
|
5176 |
|
|
5177 |
|
|
5178 |
|
|
5179 |
|
@return@link |
5180 |
|
|
5181 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5182 |
0 |
public JalviewModel.Viewport.Overview getOverview()... |
5183 |
|
{ |
5184 |
0 |
return overview; |
5185 |
|
} |
5186 |
|
|
5187 |
|
|
5188 |
|
|
5189 |
|
|
5190 |
|
@param |
5191 |
|
@link |
5192 |
|
|
5193 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5194 |
0 |
public void setOverview(JalviewModel.Viewport.Overview value)... |
5195 |
|
{ |
5196 |
0 |
this.overview = value; |
5197 |
|
} |
5198 |
|
|
5199 |
|
|
5200 |
|
|
5201 |
|
|
5202 |
|
@return@link |
5203 |
|
|
5204 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5205 |
0 |
public Boolean isConservationSelected()... |
5206 |
|
{ |
5207 |
0 |
return conservationSelected; |
5208 |
|
} |
5209 |
|
|
5210 |
|
|
5211 |
|
|
5212 |
|
|
5213 |
|
@param |
5214 |
|
@link |
5215 |
|
|
5216 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5217 |
0 |
public void setConservationSelected(Boolean value)... |
5218 |
|
{ |
5219 |
0 |
this.conservationSelected = value; |
5220 |
|
} |
5221 |
|
|
5222 |
|
|
5223 |
|
|
5224 |
|
|
5225 |
|
@return@link |
5226 |
|
|
5227 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5228 |
0 |
public Boolean isPidSelected()... |
5229 |
|
{ |
5230 |
0 |
return pidSelected; |
5231 |
|
} |
5232 |
|
|
5233 |
|
|
5234 |
|
|
5235 |
|
|
5236 |
|
@param |
5237 |
|
@link |
5238 |
|
|
5239 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5240 |
0 |
public void setPidSelected(Boolean value)... |
5241 |
|
{ |
5242 |
0 |
this.pidSelected = value; |
5243 |
|
} |
5244 |
|
|
5245 |
|
|
5246 |
|
|
5247 |
|
|
5248 |
|
@return@link |
5249 |
|
|
5250 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5251 |
0 |
public String getBgColour()... |
5252 |
|
{ |
5253 |
0 |
return bgColour; |
5254 |
|
} |
5255 |
|
|
5256 |
|
|
5257 |
|
|
5258 |
|
|
5259 |
|
@param |
5260 |
|
@link |
5261 |
|
|
5262 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5263 |
0 |
public void setBgColour(String value)... |
5264 |
|
{ |
5265 |
0 |
this.bgColour = value; |
5266 |
|
} |
5267 |
|
|
5268 |
|
|
5269 |
|
|
5270 |
|
|
5271 |
|
@return@link |
5272 |
|
|
5273 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5274 |
0 |
public Integer getConsThreshold()... |
5275 |
|
{ |
5276 |
0 |
return consThreshold; |
5277 |
|
} |
5278 |
|
|
5279 |
|
|
5280 |
|
|
5281 |
|
|
5282 |
|
@param |
5283 |
|
@link |
5284 |
|
|
5285 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5286 |
0 |
public void setConsThreshold(Integer value)... |
5287 |
|
{ |
5288 |
0 |
this.consThreshold = value; |
5289 |
|
} |
5290 |
|
|
5291 |
|
|
5292 |
|
|
5293 |
|
|
5294 |
|
@return@link |
5295 |
|
|
5296 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5297 |
0 |
public Integer getPidThreshold()... |
5298 |
|
{ |
5299 |
0 |
return pidThreshold; |
5300 |
|
} |
5301 |
|
|
5302 |
|
|
5303 |
|
|
5304 |
|
|
5305 |
|
@param |
5306 |
|
@link |
5307 |
|
|
5308 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5309 |
0 |
public void setPidThreshold(Integer value)... |
5310 |
|
{ |
5311 |
0 |
this.pidThreshold = value; |
5312 |
|
} |
5313 |
|
|
5314 |
|
|
5315 |
|
|
5316 |
|
|
5317 |
|
@return@link |
5318 |
|
|
5319 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5320 |
0 |
public String getTitle()... |
5321 |
|
{ |
5322 |
0 |
return title; |
5323 |
|
} |
5324 |
|
|
5325 |
|
|
5326 |
|
|
5327 |
|
|
5328 |
|
@param |
5329 |
|
@link |
5330 |
|
|
5331 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5332 |
0 |
public void setTitle(String value)... |
5333 |
|
{ |
5334 |
0 |
this.title = value; |
5335 |
|
} |
5336 |
|
|
5337 |
|
|
5338 |
|
|
5339 |
|
|
5340 |
|
@return@link |
5341 |
|
|
5342 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5343 |
0 |
public Boolean isShowFullId()... |
5344 |
|
{ |
5345 |
0 |
return showFullId; |
5346 |
|
} |
5347 |
|
|
5348 |
|
|
5349 |
|
|
5350 |
|
|
5351 |
|
@param |
5352 |
|
@link |
5353 |
|
|
5354 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5355 |
0 |
public void setShowFullId(Boolean value)... |
5356 |
|
{ |
5357 |
0 |
this.showFullId = value; |
5358 |
|
} |
5359 |
|
|
5360 |
|
|
5361 |
|
|
5362 |
|
|
5363 |
|
@return@link |
5364 |
|
|
5365 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5366 |
0 |
public Boolean isRightAlignIds()... |
5367 |
|
{ |
5368 |
0 |
return rightAlignIds; |
5369 |
|
} |
5370 |
|
|
5371 |
|
|
5372 |
|
|
5373 |
|
|
5374 |
|
@param |
5375 |
|
@link |
5376 |
|
|
5377 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5378 |
0 |
public void setRightAlignIds(Boolean value)... |
5379 |
|
{ |
5380 |
0 |
this.rightAlignIds = value; |
5381 |
|
} |
5382 |
|
|
5383 |
|
|
5384 |
|
|
5385 |
|
|
5386 |
|
@return@link |
5387 |
|
|
5388 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5389 |
0 |
public Boolean isShowText()... |
5390 |
|
{ |
5391 |
0 |
return showText; |
5392 |
|
} |
5393 |
|
|
5394 |
|
|
5395 |
|
|
5396 |
|
|
5397 |
|
@param |
5398 |
|
@link |
5399 |
|
|
5400 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5401 |
0 |
public void setShowText(Boolean value)... |
5402 |
|
{ |
5403 |
0 |
this.showText = value; |
5404 |
|
} |
5405 |
|
|
5406 |
|
|
5407 |
|
|
5408 |
|
|
5409 |
|
@return@link |
5410 |
|
|
5411 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5412 |
0 |
public Boolean isShowColourText()... |
5413 |
|
{ |
5414 |
0 |
return showColourText; |
5415 |
|
} |
5416 |
|
|
5417 |
|
|
5418 |
|
|
5419 |
|
|
5420 |
|
@param |
5421 |
|
@link |
5422 |
|
|
5423 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5424 |
0 |
public void setShowColourText(Boolean value)... |
5425 |
|
{ |
5426 |
0 |
this.showColourText = value; |
5427 |
|
} |
5428 |
|
|
5429 |
|
|
5430 |
|
|
5431 |
|
|
5432 |
|
@return@link |
5433 |
|
|
5434 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5435 |
0 |
public boolean isShowUnconserved()... |
5436 |
|
{ |
5437 |
0 |
if (showUnconserved == null) |
5438 |
|
{ |
5439 |
0 |
return false; |
5440 |
|
} |
5441 |
|
else |
5442 |
|
{ |
5443 |
0 |
return showUnconserved; |
5444 |
|
} |
5445 |
|
} |
5446 |
|
|
5447 |
|
|
5448 |
|
|
5449 |
|
|
5450 |
|
@param |
5451 |
|
@link |
5452 |
|
|
5453 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5454 |
0 |
public void setShowUnconserved(Boolean value)... |
5455 |
|
{ |
5456 |
0 |
this.showUnconserved = value; |
5457 |
|
} |
5458 |
|
|
5459 |
|
|
5460 |
|
|
5461 |
|
|
5462 |
|
@return@link |
5463 |
|
|
5464 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5465 |
0 |
public Boolean isShowBoxes()... |
5466 |
|
{ |
5467 |
0 |
return showBoxes; |
5468 |
|
} |
5469 |
|
|
5470 |
|
|
5471 |
|
|
5472 |
|
|
5473 |
|
@param |
5474 |
|
@link |
5475 |
|
|
5476 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5477 |
0 |
public void setShowBoxes(Boolean value)... |
5478 |
|
{ |
5479 |
0 |
this.showBoxes = value; |
5480 |
|
} |
5481 |
|
|
5482 |
|
|
5483 |
|
|
5484 |
|
|
5485 |
|
@return@link |
5486 |
|
|
5487 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5488 |
0 |
public Boolean isWrapAlignment()... |
5489 |
|
{ |
5490 |
0 |
return wrapAlignment; |
5491 |
|
} |
5492 |
|
|
5493 |
|
|
5494 |
|
|
5495 |
|
|
5496 |
|
@param |
5497 |
|
@link |
5498 |
|
|
5499 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5500 |
0 |
public void setWrapAlignment(Boolean value)... |
5501 |
|
{ |
5502 |
0 |
this.wrapAlignment = value; |
5503 |
|
} |
5504 |
|
|
5505 |
|
|
5506 |
|
|
5507 |
|
|
5508 |
|
@return@link |
5509 |
|
|
5510 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5511 |
0 |
public Boolean isRenderGaps()... |
5512 |
|
{ |
5513 |
0 |
return renderGaps; |
5514 |
|
} |
5515 |
|
|
5516 |
|
|
5517 |
|
|
5518 |
|
|
5519 |
|
@param |
5520 |
|
@link |
5521 |
|
|
5522 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5523 |
0 |
public void setRenderGaps(Boolean value)... |
5524 |
|
{ |
5525 |
0 |
this.renderGaps = value; |
5526 |
|
} |
5527 |
|
|
5528 |
|
|
5529 |
|
|
5530 |
|
|
5531 |
|
@return@link |
5532 |
|
|
5533 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5534 |
0 |
public Boolean isShowSequenceFeatures()... |
5535 |
|
{ |
5536 |
0 |
return showSequenceFeatures; |
5537 |
|
} |
5538 |
|
|
5539 |
|
|
5540 |
|
|
5541 |
|
|
5542 |
|
@param |
5543 |
|
@link |
5544 |
|
|
5545 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5546 |
0 |
public void setShowSequenceFeatures(Boolean value)... |
5547 |
|
{ |
5548 |
0 |
this.showSequenceFeatures = value; |
5549 |
|
} |
5550 |
|
|
5551 |
|
|
5552 |
|
|
5553 |
|
|
5554 |
|
@return@link |
5555 |
|
|
5556 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5557 |
0 |
public Boolean isShowNPfeatureTooltip()... |
5558 |
|
{ |
5559 |
0 |
return showNPfeatureTooltip; |
5560 |
|
} |
5561 |
|
|
5562 |
|
|
5563 |
|
|
5564 |
|
|
5565 |
|
@param |
5566 |
|
@link |
5567 |
|
|
5568 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5569 |
0 |
public void setShowNPfeatureTooltip(Boolean value)... |
5570 |
|
{ |
5571 |
0 |
this.showNPfeatureTooltip = value; |
5572 |
|
} |
5573 |
|
|
5574 |
|
|
5575 |
|
|
5576 |
|
|
5577 |
|
@return@link |
5578 |
|
|
5579 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5580 |
0 |
public Boolean isShowDbRefTooltip()... |
5581 |
|
{ |
5582 |
0 |
return showDbRefTooltip; |
5583 |
|
} |
5584 |
|
|
5585 |
|
|
5586 |
|
|
5587 |
|
|
5588 |
|
@param |
5589 |
|
@link |
5590 |
|
|
5591 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5592 |
0 |
public void setShowDbRefTooltip(Boolean value)... |
5593 |
|
{ |
5594 |
0 |
this.showDbRefTooltip = value; |
5595 |
|
} |
5596 |
|
|
5597 |
|
|
5598 |
|
|
5599 |
|
|
5600 |
|
@return@link |
5601 |
|
|
5602 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5603 |
0 |
public boolean isFollowHighlight()... |
5604 |
|
{ |
5605 |
0 |
if (followHighlight == null) |
5606 |
|
{ |
5607 |
0 |
return true; |
5608 |
|
} |
5609 |
|
else |
5610 |
|
{ |
5611 |
0 |
return followHighlight; |
5612 |
|
} |
5613 |
|
} |
5614 |
|
|
5615 |
|
|
5616 |
|
|
5617 |
|
|
5618 |
|
@param |
5619 |
|
@link |
5620 |
|
|
5621 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5622 |
0 |
public void setFollowHighlight(Boolean value)... |
5623 |
|
{ |
5624 |
0 |
this.followHighlight = value; |
5625 |
|
} |
5626 |
|
|
5627 |
|
|
5628 |
|
|
5629 |
|
|
5630 |
|
@return@link |
5631 |
|
|
5632 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5633 |
0 |
public boolean isFollowSelection()... |
5634 |
|
{ |
5635 |
0 |
if (followSelection == null) |
5636 |
|
{ |
5637 |
0 |
return true; |
5638 |
|
} |
5639 |
|
else |
5640 |
|
{ |
5641 |
0 |
return followSelection; |
5642 |
|
} |
5643 |
|
} |
5644 |
|
|
5645 |
|
|
5646 |
|
|
5647 |
|
|
5648 |
|
@param |
5649 |
|
@link |
5650 |
|
|
5651 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5652 |
0 |
public void setFollowSelection(Boolean value)... |
5653 |
|
{ |
5654 |
0 |
this.followSelection = value; |
5655 |
|
} |
5656 |
|
|
5657 |
|
|
5658 |
|
|
5659 |
|
|
5660 |
|
@return@link |
5661 |
|
|
5662 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5663 |
0 |
public Boolean isShowAnnotation()... |
5664 |
|
{ |
5665 |
0 |
return showAnnotation; |
5666 |
|
} |
5667 |
|
|
5668 |
|
|
5669 |
|
|
5670 |
|
|
5671 |
|
@param |
5672 |
|
@link |
5673 |
|
|
5674 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5675 |
0 |
public void setShowAnnotation(Boolean value)... |
5676 |
|
{ |
5677 |
0 |
this.showAnnotation = value; |
5678 |
|
} |
5679 |
|
|
5680 |
|
|
5681 |
|
|
5682 |
|
|
5683 |
|
@return@link |
5684 |
|
|
5685 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5686 |
0 |
public boolean isCentreColumnLabels()... |
5687 |
|
{ |
5688 |
0 |
if (centreColumnLabels == null) |
5689 |
|
{ |
5690 |
0 |
return false; |
5691 |
|
} |
5692 |
|
else |
5693 |
|
{ |
5694 |
0 |
return centreColumnLabels; |
5695 |
|
} |
5696 |
|
} |
5697 |
|
|
5698 |
|
|
5699 |
|
|
5700 |
|
|
5701 |
|
@param |
5702 |
|
@link |
5703 |
|
|
5704 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5705 |
0 |
public void setCentreColumnLabels(Boolean value)... |
5706 |
|
{ |
5707 |
0 |
this.centreColumnLabels = value; |
5708 |
|
} |
5709 |
|
|
5710 |
|
|
5711 |
|
|
5712 |
|
|
5713 |
|
@return@link |
5714 |
|
|
5715 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5716 |
0 |
public boolean isShowGroupConservation()... |
5717 |
|
{ |
5718 |
0 |
if (showGroupConservation == null) |
5719 |
|
{ |
5720 |
0 |
return false; |
5721 |
|
} |
5722 |
|
else |
5723 |
|
{ |
5724 |
0 |
return showGroupConservation; |
5725 |
|
} |
5726 |
|
} |
5727 |
|
|
5728 |
|
|
5729 |
|
|
5730 |
|
|
5731 |
|
@param |
5732 |
|
@link |
5733 |
|
|
5734 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5735 |
0 |
public void setShowGroupConservation(Boolean value)... |
5736 |
|
{ |
5737 |
0 |
this.showGroupConservation = value; |
5738 |
|
} |
5739 |
|
|
5740 |
|
|
5741 |
|
|
5742 |
|
|
5743 |
|
@return@link |
5744 |
|
|
5745 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5746 |
0 |
public boolean isShowGroupConsensus()... |
5747 |
|
{ |
5748 |
0 |
if (showGroupConsensus == null) |
5749 |
|
{ |
5750 |
0 |
return false; |
5751 |
|
} |
5752 |
|
else |
5753 |
|
{ |
5754 |
0 |
return showGroupConsensus; |
5755 |
|
} |
5756 |
|
} |
5757 |
|
|
5758 |
|
|
5759 |
|
|
5760 |
|
|
5761 |
|
@param |
5762 |
|
@link |
5763 |
|
|
5764 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5765 |
0 |
public void setShowGroupConsensus(Boolean value)... |
5766 |
|
{ |
5767 |
0 |
this.showGroupConsensus = value; |
5768 |
|
} |
5769 |
|
|
5770 |
|
|
5771 |
|
|
5772 |
|
|
5773 |
|
@return@link |
5774 |
|
|
5775 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5776 |
0 |
public boolean isShowConsensusHistogram()... |
5777 |
|
{ |
5778 |
0 |
if (showConsensusHistogram == null) |
5779 |
|
{ |
5780 |
0 |
return true; |
5781 |
|
} |
5782 |
|
else |
5783 |
|
{ |
5784 |
0 |
return showConsensusHistogram; |
5785 |
|
} |
5786 |
|
} |
5787 |
|
|
5788 |
|
|
5789 |
|
|
5790 |
|
|
5791 |
|
@param |
5792 |
|
@link |
5793 |
|
|
5794 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5795 |
0 |
public void setShowConsensusHistogram(Boolean value)... |
5796 |
|
{ |
5797 |
0 |
this.showConsensusHistogram = value; |
5798 |
|
} |
5799 |
|
|
5800 |
|
|
5801 |
|
|
5802 |
|
|
5803 |
|
@return@link |
5804 |
|
|
5805 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5806 |
0 |
public boolean isShowSequenceLogo()... |
5807 |
|
{ |
5808 |
0 |
if (showSequenceLogo == null) |
5809 |
|
{ |
5810 |
0 |
return false; |
5811 |
|
} |
5812 |
|
else |
5813 |
|
{ |
5814 |
0 |
return showSequenceLogo; |
5815 |
|
} |
5816 |
|
} |
5817 |
|
|
5818 |
|
|
5819 |
|
|
5820 |
|
|
5821 |
|
@param |
5822 |
|
@link |
5823 |
|
|
5824 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5825 |
0 |
public void setShowSequenceLogo(Boolean value)... |
5826 |
|
{ |
5827 |
0 |
this.showSequenceLogo = value; |
5828 |
|
} |
5829 |
|
|
5830 |
|
|
5831 |
|
|
5832 |
|
|
5833 |
|
@return@link |
5834 |
|
|
5835 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5836 |
0 |
public boolean isNormaliseSequenceLogo()... |
5837 |
|
{ |
5838 |
0 |
if (normaliseSequenceLogo == null) |
5839 |
|
{ |
5840 |
0 |
return false; |
5841 |
|
} |
5842 |
|
else |
5843 |
|
{ |
5844 |
0 |
return normaliseSequenceLogo; |
5845 |
|
} |
5846 |
|
} |
5847 |
|
|
5848 |
|
|
5849 |
|
|
5850 |
|
|
5851 |
|
@param |
5852 |
|
@link |
5853 |
|
|
5854 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5855 |
0 |
public void setNormaliseSequenceLogo(Boolean value)... |
5856 |
|
{ |
5857 |
0 |
this.normaliseSequenceLogo = value; |
5858 |
|
} |
5859 |
|
|
5860 |
|
|
5861 |
|
|
5862 |
|
|
5863 |
|
@return@link |
5864 |
|
|
5865 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
5866 |
0 |
public boolean isIgnoreGapsinConsensus()... |
5867 |
|
{ |
5868 |
0 |
if (ignoreGapsinConsensus == null) |
5869 |
|
{ |
5870 |
0 |
return true; |
5871 |
|
} |
5872 |
|
else |
5873 |
|
{ |
5874 |
0 |
return ignoreGapsinConsensus; |
5875 |
|
} |
5876 |
|
} |
5877 |
|
|
5878 |
|
|
5879 |
|
|
5880 |
|
|
5881 |
|
@param |
5882 |
|
@link |
5883 |
|
|
5884 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5885 |
0 |
public void setIgnoreGapsinConsensus(Boolean value)... |
5886 |
|
{ |
5887 |
0 |
this.ignoreGapsinConsensus = value; |
5888 |
|
} |
5889 |
|
|
5890 |
|
|
5891 |
|
|
5892 |
|
|
5893 |
|
@return@link |
5894 |
|
|
5895 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5896 |
0 |
public Integer getStartRes()... |
5897 |
|
{ |
5898 |
0 |
return startRes; |
5899 |
|
} |
5900 |
|
|
5901 |
|
|
5902 |
|
|
5903 |
|
|
5904 |
|
@param |
5905 |
|
@link |
5906 |
|
|
5907 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5908 |
0 |
public void setStartRes(Integer value)... |
5909 |
|
{ |
5910 |
0 |
this.startRes = value; |
5911 |
|
} |
5912 |
|
|
5913 |
|
|
5914 |
|
|
5915 |
|
|
5916 |
|
@return@link |
5917 |
|
|
5918 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5919 |
0 |
public Integer getStartSeq()... |
5920 |
|
{ |
5921 |
0 |
return startSeq; |
5922 |
|
} |
5923 |
|
|
5924 |
|
|
5925 |
|
|
5926 |
|
|
5927 |
|
@param |
5928 |
|
@link |
5929 |
|
|
5930 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5931 |
0 |
public void setStartSeq(Integer value)... |
5932 |
|
{ |
5933 |
0 |
this.startSeq = value; |
5934 |
|
} |
5935 |
|
|
5936 |
|
|
5937 |
|
|
5938 |
|
|
5939 |
|
@return@link |
5940 |
|
|
5941 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5942 |
0 |
public Integer getCharWidth()... |
5943 |
|
{ |
5944 |
0 |
return charWidth; |
5945 |
|
} |
5946 |
|
|
5947 |
|
|
5948 |
|
|
5949 |
|
|
5950 |
|
@param |
5951 |
|
@link |
5952 |
|
|
5953 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5954 |
0 |
public void setCharWidth(Integer value)... |
5955 |
|
{ |
5956 |
0 |
this.charWidth = value; |
5957 |
|
} |
5958 |
|
|
5959 |
|
|
5960 |
|
|
5961 |
|
|
5962 |
|
@return@link |
5963 |
|
|
5964 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5965 |
0 |
public Integer getCharHeight()... |
5966 |
|
{ |
5967 |
0 |
return charHeight; |
5968 |
|
} |
5969 |
|
|
5970 |
|
|
5971 |
|
|
5972 |
|
|
5973 |
|
@param |
5974 |
|
@link |
5975 |
|
|
5976 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5977 |
0 |
public void setCharHeight(Integer value)... |
5978 |
|
{ |
5979 |
0 |
this.charHeight = value; |
5980 |
|
} |
5981 |
|
|
5982 |
|
|
5983 |
|
|
5984 |
|
|
5985 |
|
@return@link |
5986 |
|
|
5987 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
5988 |
0 |
public String getFontName()... |
5989 |
|
{ |
5990 |
0 |
return fontName; |
5991 |
|
} |
5992 |
|
|
5993 |
|
|
5994 |
|
|
5995 |
|
|
5996 |
|
@param |
5997 |
|
@link |
5998 |
|
|
5999 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6000 |
0 |
public void setFontName(String value)... |
6001 |
|
{ |
6002 |
0 |
this.fontName = value; |
6003 |
|
} |
6004 |
|
|
6005 |
|
|
6006 |
|
|
6007 |
|
|
6008 |
|
@return@link |
6009 |
|
|
6010 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6011 |
0 |
public Integer getFontSize()... |
6012 |
|
{ |
6013 |
0 |
return fontSize; |
6014 |
|
} |
6015 |
|
|
6016 |
|
|
6017 |
|
|
6018 |
|
|
6019 |
|
@param |
6020 |
|
@link |
6021 |
|
|
6022 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6023 |
0 |
public void setFontSize(Integer value)... |
6024 |
|
{ |
6025 |
0 |
this.fontSize = value; |
6026 |
|
} |
6027 |
|
|
6028 |
|
|
6029 |
|
|
6030 |
|
|
6031 |
|
@return@link |
6032 |
|
|
6033 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6034 |
0 |
public Integer getFontStyle()... |
6035 |
|
{ |
6036 |
0 |
return fontStyle; |
6037 |
|
} |
6038 |
|
|
6039 |
|
|
6040 |
|
|
6041 |
|
|
6042 |
|
@param |
6043 |
|
@link |
6044 |
|
|
6045 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6046 |
0 |
public void setFontStyle(Integer value)... |
6047 |
|
{ |
6048 |
0 |
this.fontStyle = value; |
6049 |
|
} |
6050 |
|
|
6051 |
|
|
6052 |
|
|
6053 |
|
|
6054 |
|
@return@link |
6055 |
|
|
6056 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6057 |
0 |
public Integer getIdWidth()... |
6058 |
|
{ |
6059 |
0 |
return idWidth; |
6060 |
|
} |
6061 |
|
|
6062 |
|
|
6063 |
|
|
6064 |
|
|
6065 |
|
@param |
6066 |
|
@link |
6067 |
|
|
6068 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6069 |
0 |
public void setIdWidth(Integer value)... |
6070 |
|
{ |
6071 |
0 |
this.idWidth = value; |
6072 |
|
} |
6073 |
|
|
6074 |
|
|
6075 |
|
|
6076 |
|
|
6077 |
|
@return@link |
6078 |
|
|
6079 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6080 |
0 |
public Boolean isIdWidthManuallyAdjusted()... |
6081 |
|
{ |
6082 |
0 |
return idWidthManuallyAdjusted; |
6083 |
|
} |
6084 |
|
|
6085 |
|
|
6086 |
|
|
6087 |
|
|
6088 |
|
@param |
6089 |
|
@link |
6090 |
|
|
6091 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6092 |
0 |
public void setIdWidthManuallyAdjusted(Boolean value)... |
6093 |
|
{ |
6094 |
0 |
this.idWidthManuallyAdjusted = value; |
6095 |
|
} |
6096 |
|
|
6097 |
|
|
6098 |
|
|
6099 |
|
|
6100 |
|
@return@link |
6101 |
|
|
6102 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
6103 |
0 |
public boolean isScaleProteinAsCdna()... |
6104 |
|
{ |
6105 |
0 |
if (scaleProteinAsCdna == null) |
6106 |
|
{ |
6107 |
0 |
return true; |
6108 |
|
} |
6109 |
|
else |
6110 |
|
{ |
6111 |
0 |
return scaleProteinAsCdna; |
6112 |
|
} |
6113 |
|
} |
6114 |
|
|
6115 |
|
|
6116 |
|
|
6117 |
|
|
6118 |
|
@param |
6119 |
|
@link |
6120 |
|
|
6121 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6122 |
0 |
public void setScaleProteinAsCdna(Boolean value)... |
6123 |
|
{ |
6124 |
0 |
this.scaleProteinAsCdna = value; |
6125 |
|
} |
6126 |
|
|
6127 |
|
|
6128 |
|
|
6129 |
|
|
6130 |
|
@return@link |
6131 |
|
|
6132 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6133 |
0 |
public String getViewName()... |
6134 |
|
{ |
6135 |
0 |
return viewName; |
6136 |
|
} |
6137 |
|
|
6138 |
|
|
6139 |
|
|
6140 |
|
|
6141 |
|
@param |
6142 |
|
@link |
6143 |
|
|
6144 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6145 |
0 |
public void setViewName(String value)... |
6146 |
|
{ |
6147 |
0 |
this.viewName = value; |
6148 |
|
} |
6149 |
|
|
6150 |
|
|
6151 |
|
|
6152 |
|
|
6153 |
|
@return@link |
6154 |
|
|
6155 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6156 |
0 |
public String getSequenceSetId()... |
6157 |
|
{ |
6158 |
0 |
return sequenceSetId; |
6159 |
|
} |
6160 |
|
|
6161 |
|
|
6162 |
|
|
6163 |
|
|
6164 |
|
@param |
6165 |
|
@link |
6166 |
|
|
6167 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6168 |
0 |
public void setSequenceSetId(String value)... |
6169 |
|
{ |
6170 |
0 |
this.sequenceSetId = value; |
6171 |
|
} |
6172 |
|
|
6173 |
|
|
6174 |
|
|
6175 |
|
|
6176 |
|
@return@link |
6177 |
|
|
6178 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6179 |
0 |
public Boolean isGatheredViews()... |
6180 |
|
{ |
6181 |
0 |
return gatheredViews; |
6182 |
|
} |
6183 |
|
|
6184 |
|
|
6185 |
|
|
6186 |
|
|
6187 |
|
@param |
6188 |
|
@link |
6189 |
|
|
6190 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6191 |
0 |
public void setGatheredViews(Boolean value)... |
6192 |
|
{ |
6193 |
0 |
this.gatheredViews = value; |
6194 |
|
} |
6195 |
|
|
6196 |
|
|
6197 |
|
|
6198 |
|
|
6199 |
|
@return@link |
6200 |
|
|
6201 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6202 |
0 |
public Integer getTextCol1()... |
6203 |
|
{ |
6204 |
0 |
return textCol1; |
6205 |
|
} |
6206 |
|
|
6207 |
|
|
6208 |
|
|
6209 |
|
|
6210 |
|
@param |
6211 |
|
@link |
6212 |
|
|
6213 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6214 |
0 |
public void setTextCol1(Integer value)... |
6215 |
|
{ |
6216 |
0 |
this.textCol1 = value; |
6217 |
|
} |
6218 |
|
|
6219 |
|
|
6220 |
|
|
6221 |
|
|
6222 |
|
@return@link |
6223 |
|
|
6224 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6225 |
0 |
public Integer getTextCol2()... |
6226 |
|
{ |
6227 |
0 |
return textCol2; |
6228 |
|
} |
6229 |
|
|
6230 |
|
|
6231 |
|
|
6232 |
|
|
6233 |
|
@param |
6234 |
|
@link |
6235 |
|
|
6236 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6237 |
0 |
public void setTextCol2(Integer value)... |
6238 |
|
{ |
6239 |
0 |
this.textCol2 = value; |
6240 |
|
} |
6241 |
|
|
6242 |
|
|
6243 |
|
|
6244 |
|
|
6245 |
|
@return@link |
6246 |
|
|
6247 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6248 |
0 |
public Integer getTextColThreshold()... |
6249 |
|
{ |
6250 |
0 |
return textColThreshold; |
6251 |
|
} |
6252 |
|
|
6253 |
|
|
6254 |
|
|
6255 |
|
|
6256 |
|
@param |
6257 |
|
@link |
6258 |
|
|
6259 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6260 |
0 |
public void setTextColThreshold(Integer value)... |
6261 |
|
{ |
6262 |
0 |
this.textColThreshold = value; |
6263 |
|
} |
6264 |
|
|
6265 |
|
|
6266 |
|
|
6267 |
|
|
6268 |
|
@return@link |
6269 |
|
|
6270 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6271 |
0 |
public String getId()... |
6272 |
|
{ |
6273 |
0 |
return id; |
6274 |
|
} |
6275 |
|
|
6276 |
|
|
6277 |
|
|
6278 |
|
|
6279 |
|
@param |
6280 |
|
@link |
6281 |
|
|
6282 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6283 |
0 |
public void setId(String value)... |
6284 |
|
{ |
6285 |
0 |
this.id = value; |
6286 |
|
} |
6287 |
|
|
6288 |
|
|
6289 |
|
|
6290 |
|
|
6291 |
|
@return@link |
6292 |
|
|
6293 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6294 |
0 |
public String getComplementId()... |
6295 |
|
{ |
6296 |
0 |
return complementId; |
6297 |
|
} |
6298 |
|
|
6299 |
|
|
6300 |
|
|
6301 |
|
|
6302 |
|
@param |
6303 |
|
@link |
6304 |
|
|
6305 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6306 |
0 |
public void setComplementId(String value)... |
6307 |
|
{ |
6308 |
0 |
this.complementId = value; |
6309 |
|
} |
6310 |
|
|
6311 |
|
|
6312 |
|
|
6313 |
|
|
6314 |
|
@return@link |
6315 |
|
|
6316 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
6317 |
0 |
public boolean isShowComplementFeatures()... |
6318 |
|
{ |
6319 |
0 |
if (showComplementFeatures == null) |
6320 |
|
{ |
6321 |
0 |
return false; |
6322 |
|
} |
6323 |
|
else |
6324 |
|
{ |
6325 |
0 |
return showComplementFeatures; |
6326 |
|
} |
6327 |
|
} |
6328 |
|
|
6329 |
|
|
6330 |
|
|
6331 |
|
|
6332 |
|
@param |
6333 |
|
@link |
6334 |
|
|
6335 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6336 |
0 |
public void setShowComplementFeatures(Boolean value)... |
6337 |
|
{ |
6338 |
0 |
this.showComplementFeatures = value; |
6339 |
|
} |
6340 |
|
|
6341 |
|
|
6342 |
|
|
6343 |
|
|
6344 |
|
@return@link |
6345 |
|
|
6346 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
6347 |
0 |
public boolean isShowComplementFeaturesOnTop()... |
6348 |
|
{ |
6349 |
0 |
if (showComplementFeaturesOnTop == null) |
6350 |
|
{ |
6351 |
0 |
return false; |
6352 |
|
} |
6353 |
|
else |
6354 |
|
{ |
6355 |
0 |
return showComplementFeaturesOnTop; |
6356 |
|
} |
6357 |
|
} |
6358 |
|
|
6359 |
|
|
6360 |
|
|
6361 |
|
|
6362 |
|
@param |
6363 |
|
@link |
6364 |
|
|
6365 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6366 |
0 |
public void setShowComplementFeaturesOnTop(Boolean value)... |
6367 |
|
{ |
6368 |
0 |
this.showComplementFeaturesOnTop = value; |
6369 |
|
} |
6370 |
|
|
6371 |
|
|
6372 |
|
|
6373 |
|
|
6374 |
|
@return@link |
6375 |
|
|
6376 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6377 |
0 |
public Integer getWidth()... |
6378 |
|
{ |
6379 |
0 |
return width; |
6380 |
|
} |
6381 |
|
|
6382 |
|
|
6383 |
|
|
6384 |
|
|
6385 |
|
@param |
6386 |
|
@link |
6387 |
|
|
6388 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6389 |
0 |
public void setWidth(Integer value)... |
6390 |
|
{ |
6391 |
0 |
this.width = value; |
6392 |
|
} |
6393 |
|
|
6394 |
|
|
6395 |
|
|
6396 |
|
|
6397 |
|
@return@link |
6398 |
|
|
6399 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6400 |
0 |
public Integer getHeight()... |
6401 |
|
{ |
6402 |
0 |
return height; |
6403 |
|
} |
6404 |
|
|
6405 |
|
|
6406 |
|
|
6407 |
|
|
6408 |
|
@param |
6409 |
|
@link |
6410 |
|
|
6411 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6412 |
0 |
public void setHeight(Integer value)... |
6413 |
|
{ |
6414 |
0 |
this.height = value; |
6415 |
|
} |
6416 |
|
|
6417 |
|
|
6418 |
|
|
6419 |
|
|
6420 |
|
@return@link |
6421 |
|
|
6422 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6423 |
0 |
public Integer getXpos()... |
6424 |
|
{ |
6425 |
0 |
return xpos; |
6426 |
|
} |
6427 |
|
|
6428 |
|
|
6429 |
|
|
6430 |
|
|
6431 |
|
@param |
6432 |
|
@link |
6433 |
|
|
6434 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6435 |
0 |
public void setXpos(Integer value)... |
6436 |
|
{ |
6437 |
0 |
this.xpos = value; |
6438 |
|
} |
6439 |
|
|
6440 |
|
|
6441 |
|
|
6442 |
|
|
6443 |
|
@return@link |
6444 |
|
|
6445 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6446 |
0 |
public Integer getYpos()... |
6447 |
|
{ |
6448 |
0 |
return ypos; |
6449 |
|
} |
6450 |
|
|
6451 |
|
|
6452 |
|
|
6453 |
|
|
6454 |
|
@param |
6455 |
|
@link |
6456 |
|
|
6457 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6458 |
0 |
public void setYpos(Integer value)... |
6459 |
|
{ |
6460 |
0 |
this.ypos = value; |
6461 |
|
} |
6462 |
|
|
6463 |
|
|
6464 |
|
|
6465 |
|
|
6466 |
|
|
6467 |
|
|
6468 |
|
|
6469 |
|
|
6470 |
|
|
6471 |
|
|
6472 |
|
|
6473 |
|
|
6474 |
|
|
6475 |
|
|
6476 |
|
|
6477 |
|
|
6478 |
|
|
6479 |
|
|
6480 |
|
|
6481 |
|
|
6482 |
|
|
6483 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
6484 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 7 |
Complexity Density: 0.88 |
|
6485 |
|
public static class CalcIdParam extends WebServiceParameterSet |
6486 |
|
{ |
6487 |
|
|
6488 |
|
@XmlAttribute(name = "calcId", required = true) |
6489 |
|
protected String calcId; |
6490 |
|
|
6491 |
|
@XmlAttribute(name = "needsUpdate") |
6492 |
|
protected Boolean needsUpdate; |
6493 |
|
|
6494 |
|
@XmlAttribute(name = "autoUpdate", required = true) |
6495 |
|
protected boolean autoUpdate; |
6496 |
|
|
6497 |
|
|
6498 |
|
|
6499 |
|
|
6500 |
|
@return@link |
6501 |
|
|
6502 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6503 |
0 |
public String getCalcId()... |
6504 |
|
{ |
6505 |
0 |
return calcId; |
6506 |
|
} |
6507 |
|
|
6508 |
|
|
6509 |
|
|
6510 |
|
|
6511 |
|
@param |
6512 |
|
@link |
6513 |
|
|
6514 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6515 |
0 |
public void setCalcId(String value)... |
6516 |
|
{ |
6517 |
0 |
this.calcId = value; |
6518 |
|
} |
6519 |
|
|
6520 |
|
|
6521 |
|
|
6522 |
|
|
6523 |
|
@return@link |
6524 |
|
|
6525 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
6526 |
0 |
public boolean isNeedsUpdate()... |
6527 |
|
{ |
6528 |
0 |
if (needsUpdate == null) |
6529 |
|
{ |
6530 |
0 |
return false; |
6531 |
|
} |
6532 |
|
else |
6533 |
|
{ |
6534 |
0 |
return needsUpdate; |
6535 |
|
} |
6536 |
|
} |
6537 |
|
|
6538 |
|
|
6539 |
|
|
6540 |
|
|
6541 |
|
@param |
6542 |
|
@link |
6543 |
|
|
6544 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6545 |
0 |
public void setNeedsUpdate(Boolean value)... |
6546 |
|
{ |
6547 |
0 |
this.needsUpdate = value; |
6548 |
|
} |
6549 |
|
|
6550 |
|
|
6551 |
|
|
6552 |
|
|
6553 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6554 |
0 |
public boolean isAutoUpdate()... |
6555 |
|
{ |
6556 |
0 |
return autoUpdate; |
6557 |
|
} |
6558 |
|
|
6559 |
|
|
6560 |
|
|
6561 |
|
|
6562 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6563 |
0 |
public void setAutoUpdate(boolean value)... |
6564 |
|
{ |
6565 |
0 |
this.autoUpdate = value; |
6566 |
|
} |
6567 |
|
|
6568 |
|
} |
6569 |
|
|
6570 |
|
|
6571 |
|
|
6572 |
|
|
6573 |
|
|
6574 |
|
|
6575 |
|
|
6576 |
|
|
6577 |
|
|
6578 |
|
|
6579 |
|
|
6580 |
|
|
6581 |
|
|
6582 |
|
|
6583 |
|
|
6584 |
|
|
6585 |
|
|
6586 |
|
|
6587 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
6588 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
6589 |
|
public static class HiddenColumns |
6590 |
|
{ |
6591 |
|
|
6592 |
|
@XmlAttribute(name = "start") |
6593 |
|
protected Integer start; |
6594 |
|
|
6595 |
|
@XmlAttribute(name = "end") |
6596 |
|
protected Integer end; |
6597 |
|
|
6598 |
|
|
6599 |
|
|
6600 |
|
|
6601 |
|
@return@link |
6602 |
|
|
6603 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6604 |
0 |
public Integer getStart()... |
6605 |
|
{ |
6606 |
0 |
return start; |
6607 |
|
} |
6608 |
|
|
6609 |
|
|
6610 |
|
|
6611 |
|
|
6612 |
|
@param |
6613 |
|
@link |
6614 |
|
|
6615 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6616 |
0 |
public void setStart(Integer value)... |
6617 |
|
{ |
6618 |
0 |
this.start = value; |
6619 |
|
} |
6620 |
|
|
6621 |
|
|
6622 |
|
|
6623 |
|
|
6624 |
|
@return@link |
6625 |
|
|
6626 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6627 |
0 |
public Integer getEnd()... |
6628 |
|
{ |
6629 |
0 |
return end; |
6630 |
|
} |
6631 |
|
|
6632 |
|
|
6633 |
|
|
6634 |
|
|
6635 |
|
@param |
6636 |
|
@link |
6637 |
|
|
6638 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6639 |
0 |
public void setEnd(Integer value)... |
6640 |
|
{ |
6641 |
0 |
this.end = value; |
6642 |
|
} |
6643 |
|
|
6644 |
|
} |
6645 |
|
|
6646 |
|
|
6647 |
|
|
6648 |
|
|
6649 |
|
|
6650 |
|
|
6651 |
|
|
6652 |
|
|
6653 |
|
|
6654 |
|
|
6655 |
|
|
6656 |
|
|
6657 |
|
|
6658 |
|
|
6659 |
|
|
6660 |
|
|
6661 |
|
|
6662 |
|
|
6663 |
|
|
6664 |
|
|
6665 |
|
|
6666 |
|
|
6667 |
|
|
6668 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
6669 |
|
@XmlType(name = "") |
|
|
| 0% |
Uncovered Elements: 36 (36) |
Complexity: 18 |
Complexity Density: 1 |
|
6670 |
|
public static class Overview |
6671 |
|
{ |
6672 |
|
|
6673 |
|
@XmlAttribute(name = "showHidden") |
6674 |
|
protected Boolean showHidden; |
6675 |
|
|
6676 |
|
@XmlAttribute(name = "residueColour") |
6677 |
|
protected Integer residueColour; |
6678 |
|
|
6679 |
|
@XmlAttribute(name = "gapColour") |
6680 |
|
protected Integer gapColour; |
6681 |
|
|
6682 |
|
@XmlAttribute(name = "hiddenColour") |
6683 |
|
protected Integer hiddenColour; |
6684 |
|
|
6685 |
|
@XmlAttribute(name = "title") |
6686 |
|
protected String title; |
6687 |
|
|
6688 |
|
@XmlAttribute(name = "width") |
6689 |
|
protected Integer width; |
6690 |
|
|
6691 |
|
@XmlAttribute(name = "height") |
6692 |
|
protected Integer height; |
6693 |
|
|
6694 |
|
@XmlAttribute(name = "xpos") |
6695 |
|
protected Integer xpos; |
6696 |
|
|
6697 |
|
@XmlAttribute(name = "ypos") |
6698 |
|
protected Integer ypos; |
6699 |
|
|
6700 |
|
|
6701 |
|
|
6702 |
|
|
6703 |
|
@return@link |
6704 |
|
|
6705 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6706 |
0 |
public Boolean isShowHidden()... |
6707 |
|
{ |
6708 |
0 |
return showHidden; |
6709 |
|
} |
6710 |
|
|
6711 |
|
|
6712 |
|
|
6713 |
|
|
6714 |
|
@param |
6715 |
|
@link |
6716 |
|
|
6717 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6718 |
0 |
public void setShowHidden(Boolean value)... |
6719 |
|
{ |
6720 |
0 |
this.showHidden = value; |
6721 |
|
} |
6722 |
|
|
6723 |
|
|
6724 |
|
|
6725 |
|
|
6726 |
|
@return@link |
6727 |
|
|
6728 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6729 |
0 |
public Integer getResidueColour()... |
6730 |
|
{ |
6731 |
0 |
return residueColour; |
6732 |
|
} |
6733 |
|
|
6734 |
|
|
6735 |
|
|
6736 |
|
|
6737 |
|
@param |
6738 |
|
@link |
6739 |
|
|
6740 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6741 |
0 |
public void setResidueColour(Integer value)... |
6742 |
|
{ |
6743 |
0 |
this.residueColour = value; |
6744 |
|
} |
6745 |
|
|
6746 |
|
|
6747 |
|
|
6748 |
|
|
6749 |
|
@return@link |
6750 |
|
|
6751 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6752 |
0 |
public Integer getGapColour()... |
6753 |
|
{ |
6754 |
0 |
return gapColour; |
6755 |
|
} |
6756 |
|
|
6757 |
|
|
6758 |
|
|
6759 |
|
|
6760 |
|
@param |
6761 |
|
@link |
6762 |
|
|
6763 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6764 |
0 |
public void setGapColour(Integer value)... |
6765 |
|
{ |
6766 |
0 |
this.gapColour = value; |
6767 |
|
} |
6768 |
|
|
6769 |
|
|
6770 |
|
|
6771 |
|
|
6772 |
|
@return@link |
6773 |
|
|
6774 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6775 |
0 |
public Integer getHiddenColour()... |
6776 |
|
{ |
6777 |
0 |
return hiddenColour; |
6778 |
|
} |
6779 |
|
|
6780 |
|
|
6781 |
|
|
6782 |
|
|
6783 |
|
@param |
6784 |
|
@link |
6785 |
|
|
6786 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6787 |
0 |
public void setHiddenColour(Integer value)... |
6788 |
|
{ |
6789 |
0 |
this.hiddenColour = value; |
6790 |
|
} |
6791 |
|
|
6792 |
|
|
6793 |
|
|
6794 |
|
|
6795 |
|
@return@link |
6796 |
|
|
6797 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6798 |
0 |
public String getTitle()... |
6799 |
|
{ |
6800 |
0 |
return title; |
6801 |
|
} |
6802 |
|
|
6803 |
|
|
6804 |
|
|
6805 |
|
|
6806 |
|
@param |
6807 |
|
@link |
6808 |
|
|
6809 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6810 |
0 |
public void setTitle(String value)... |
6811 |
|
{ |
6812 |
0 |
this.title = value; |
6813 |
|
} |
6814 |
|
|
6815 |
|
|
6816 |
|
|
6817 |
|
|
6818 |
|
@return@link |
6819 |
|
|
6820 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6821 |
0 |
public Integer getWidth()... |
6822 |
|
{ |
6823 |
0 |
return width; |
6824 |
|
} |
6825 |
|
|
6826 |
|
|
6827 |
|
|
6828 |
|
|
6829 |
|
@param |
6830 |
|
@link |
6831 |
|
|
6832 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6833 |
0 |
public void setWidth(Integer value)... |
6834 |
|
{ |
6835 |
0 |
this.width = value; |
6836 |
|
} |
6837 |
|
|
6838 |
|
|
6839 |
|
|
6840 |
|
|
6841 |
|
@return@link |
6842 |
|
|
6843 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6844 |
0 |
public Integer getHeight()... |
6845 |
|
{ |
6846 |
0 |
return height; |
6847 |
|
} |
6848 |
|
|
6849 |
|
|
6850 |
|
|
6851 |
|
|
6852 |
|
@param |
6853 |
|
@link |
6854 |
|
|
6855 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6856 |
0 |
public void setHeight(Integer value)... |
6857 |
|
{ |
6858 |
0 |
this.height = value; |
6859 |
|
} |
6860 |
|
|
6861 |
|
|
6862 |
|
|
6863 |
|
|
6864 |
|
@return@link |
6865 |
|
|
6866 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6867 |
0 |
public Integer getXpos()... |
6868 |
|
{ |
6869 |
0 |
return xpos; |
6870 |
|
} |
6871 |
|
|
6872 |
|
|
6873 |
|
|
6874 |
|
|
6875 |
|
@param |
6876 |
|
@link |
6877 |
|
|
6878 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6879 |
0 |
public void setXpos(Integer value)... |
6880 |
|
{ |
6881 |
0 |
this.xpos = value; |
6882 |
|
} |
6883 |
|
|
6884 |
|
|
6885 |
|
|
6886 |
|
|
6887 |
|
@return@link |
6888 |
|
|
6889 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6890 |
0 |
public Integer getYpos()... |
6891 |
|
{ |
6892 |
0 |
return ypos; |
6893 |
|
} |
6894 |
|
|
6895 |
|
|
6896 |
|
|
6897 |
|
|
6898 |
|
@param |
6899 |
|
@link |
6900 |
|
|
6901 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
6902 |
0 |
public void setYpos(Integer value)... |
6903 |
|
{ |
6904 |
0 |
this.ypos = value; |
6905 |
|
} |
6906 |
|
|
6907 |
|
} |
6908 |
|
|
6909 |
|
} |
6910 |
|
|
6911 |
|
} |