1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.json.binding.biojson.v1; |
22 |
|
|
23 |
|
import com.github.reinert.jjschema.Attributes; |
24 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (24) |
Complexity: 12 |
Complexity Density: 1 |
|
25 |
|
public class AnnotationDisplaySettingPojo |
26 |
|
{ |
27 |
|
|
28 |
|
@Attributes( |
29 |
|
required = false, |
30 |
|
description = "Indicates if column label is scaled to fit within the <br>alignment column") |
31 |
|
private boolean scaleColLabel; |
32 |
|
|
33 |
|
@Attributes( |
34 |
|
required = false, |
35 |
|
description = "Indicates if every column label is displayed.") |
36 |
|
private boolean showAllColLabels; |
37 |
|
|
38 |
|
@Attributes( |
39 |
|
required = false, |
40 |
|
description = "Indicates if column labels is centred relative to the <br>alignment column") |
41 |
|
private boolean centreColLabels; |
42 |
|
|
43 |
|
@Attributes( |
44 |
|
required = false, |
45 |
|
description = "Indicates if the Annotation is shown below the alignment") |
46 |
|
private boolean belowAlignment; |
47 |
|
|
48 |
|
@Attributes( |
49 |
|
required = false, |
50 |
|
description = "Indicates if the annotation row is visible") |
51 |
|
private boolean visible; |
52 |
|
|
53 |
|
@Attributes( |
54 |
|
required = false, |
55 |
|
description = "Indicates if annotation has a graphical symbol track") |
56 |
|
private boolean hasIcon; |
57 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
58 |
5 |
public boolean isScaleColLabel()... |
59 |
|
{ |
60 |
5 |
return scaleColLabel; |
61 |
|
} |
62 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
63 |
5 |
public void setScaleColLabel(boolean scaleColLabel)... |
64 |
|
{ |
65 |
5 |
this.scaleColLabel = scaleColLabel; |
66 |
|
} |
67 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
68 |
5 |
public boolean isShowAllColLabels()... |
69 |
|
{ |
70 |
5 |
return showAllColLabels; |
71 |
|
} |
72 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
73 |
5 |
public void setShowAllColLabels(boolean showAllColLabels)... |
74 |
|
{ |
75 |
5 |
this.showAllColLabels = showAllColLabels; |
76 |
|
} |
77 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
78 |
5 |
public boolean isCentreColLabels()... |
79 |
|
{ |
80 |
5 |
return centreColLabels; |
81 |
|
} |
82 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
83 |
5 |
public void setCentreColLabels(boolean centreColLabels)... |
84 |
|
{ |
85 |
5 |
this.centreColLabels = centreColLabels; |
86 |
|
} |
87 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
88 |
5 |
public boolean isBelowAlignment()... |
89 |
|
{ |
90 |
5 |
return belowAlignment; |
91 |
|
} |
92 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
93 |
5 |
public void setBelowAlignment(boolean belowAlignment)... |
94 |
|
{ |
95 |
5 |
this.belowAlignment = belowAlignment; |
96 |
|
} |
97 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
98 |
5 |
public boolean isVisible()... |
99 |
|
{ |
100 |
5 |
return visible; |
101 |
|
} |
102 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
103 |
5 |
public void setVisible(boolean visible)... |
104 |
|
{ |
105 |
5 |
this.visible = visible; |
106 |
|
} |
107 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
108 |
5 |
public boolean isHasIcon()... |
109 |
|
{ |
110 |
5 |
return hasIcon; |
111 |
|
} |
112 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
113 |
5 |
public void setHasIcon(boolean hasIcon)... |
114 |
|
{ |
115 |
5 |
this.hasIcon = hasIcon; |
116 |
|
} |
117 |
|
|
118 |
|
} |