1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.ws.sifts; |
22 |
|
|
|
|
| 0% |
Uncovered Elements: 40 (40) |
Complexity: 20 |
Complexity Density: 1.11 |
|
23 |
|
public class MappingOutputPojo |
24 |
|
{ |
25 |
|
private String seqName; |
26 |
|
|
27 |
|
private String seqResidue; |
28 |
|
|
29 |
|
private int seqStart; |
30 |
|
|
31 |
|
private int seqEnd; |
32 |
|
|
33 |
|
private String strName; |
34 |
|
|
35 |
|
private String strResidue; |
36 |
|
|
37 |
|
private int strStart; |
38 |
|
|
39 |
|
private int strEnd; |
40 |
|
|
41 |
|
private String type; |
42 |
|
|
43 |
|
private static final int MAX_ID_LENGTH = 30; |
44 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0 |
public String getSeqName()... |
46 |
|
{ |
47 |
0 |
return seqName; |
48 |
|
} |
49 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
50 |
0 |
public void setSeqName(String seqName)... |
51 |
|
{ |
52 |
0 |
this.seqName = (seqName.length() > MAX_ID_LENGTH) |
53 |
|
? seqName.substring(0, MAX_ID_LENGTH) |
54 |
|
: seqName; |
55 |
|
} |
56 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
57 |
0 |
public String getSeqResidue()... |
58 |
|
{ |
59 |
0 |
return seqResidue; |
60 |
|
} |
61 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
0 |
public void setSeqResidue(String seqResidue)... |
63 |
|
{ |
64 |
0 |
this.seqResidue = seqResidue; |
65 |
|
} |
66 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
67 |
0 |
public int getSeqStart()... |
68 |
|
{ |
69 |
0 |
return seqStart; |
70 |
|
} |
71 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
72 |
0 |
public void setSeqStart(int seqStart)... |
73 |
|
{ |
74 |
0 |
this.seqStart = seqStart; |
75 |
|
} |
76 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
77 |
0 |
public int getSeqEnd()... |
78 |
|
{ |
79 |
0 |
return seqEnd; |
80 |
|
} |
81 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
82 |
0 |
public void setSeqEnd(int seqEnd)... |
83 |
|
{ |
84 |
0 |
this.seqEnd = seqEnd; |
85 |
|
} |
86 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
87 |
0 |
public String getStrName()... |
88 |
|
{ |
89 |
0 |
return strName; |
90 |
|
} |
91 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
92 |
0 |
public void setStrName(String strName)... |
93 |
|
{ |
94 |
0 |
this.strName = (strName.length() > MAX_ID_LENGTH) |
95 |
|
? strName.substring(0, MAX_ID_LENGTH) |
96 |
|
: strName; |
97 |
|
} |
98 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
0 |
public String getStrResidue()... |
100 |
|
{ |
101 |
0 |
return strResidue; |
102 |
|
} |
103 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
104 |
0 |
public void setStrResidue(String strResidue)... |
105 |
|
{ |
106 |
0 |
this.strResidue = strResidue; |
107 |
|
} |
108 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
109 |
0 |
public int getStrStart()... |
110 |
|
{ |
111 |
0 |
return strStart; |
112 |
|
} |
113 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
114 |
0 |
public void setStrStart(int strStart)... |
115 |
|
{ |
116 |
0 |
this.strStart = strStart; |
117 |
|
} |
118 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
119 |
0 |
public int getStrEnd()... |
120 |
|
{ |
121 |
0 |
return strEnd; |
122 |
|
} |
123 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
124 |
0 |
public void setStrEnd(int strEnd)... |
125 |
|
{ |
126 |
0 |
this.strEnd = strEnd; |
127 |
|
} |
128 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
129 |
0 |
public String getType()... |
130 |
|
{ |
131 |
0 |
return type; |
132 |
|
} |
133 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
134 |
0 |
public void setType(String type)... |
135 |
|
{ |
136 |
0 |
this.type = type; |
137 |
|
} |
138 |
|
|
139 |
|
} |