| 1 |
|
package jalview.ws2.actions.annotation; |
| 2 |
|
|
| 3 |
|
import java.util.List; |
| 4 |
|
import java.util.Map; |
| 5 |
|
|
| 6 |
|
import jalview.api.FeatureColourI; |
| 7 |
|
import jalview.datamodel.AlignmentAnnotation; |
| 8 |
|
import jalview.datamodel.features.FeatureMatcherSetI; |
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
@link |
| 13 |
|
|
| 14 |
|
|
| 15 |
|
@author |
| 16 |
|
|
| 17 |
|
|
| |
|
| 0% |
Uncovered Elements: 13 (13) |
Complexity: 5 |
Complexity Density: 0.62 |
|
| 18 |
|
public class AnnotationResult |
| 19 |
|
{ |
| 20 |
|
final List<AlignmentAnnotation> annotations; |
| 21 |
|
|
| 22 |
|
final boolean hasFeatures; |
| 23 |
|
|
| 24 |
|
final Map<String, FeatureColourI> featureColours; |
| 25 |
|
|
| 26 |
|
final Map<String, FeatureMatcherSetI> featureFilters; |
| 27 |
|
|
| |
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
| 28 |
0 |
public AnnotationResult(List<AlignmentAnnotation> annotations, boolean hasFeatures,... |
| 29 |
|
Map<String, FeatureColourI> featureColours, Map<String, FeatureMatcherSetI> featureFilters) |
| 30 |
|
{ |
| 31 |
0 |
this.annotations = annotations; |
| 32 |
0 |
this.hasFeatures = hasFeatures; |
| 33 |
0 |
this.featureColours = featureColours; |
| 34 |
0 |
this.featureFilters = featureFilters; |
| 35 |
|
} |
| 36 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 37 |
0 |
public List<AlignmentAnnotation> getAnnotations()... |
| 38 |
|
{ |
| 39 |
0 |
return annotations; |
| 40 |
|
} |
| 41 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 42 |
0 |
public boolean getHasFeatures()... |
| 43 |
|
{ |
| 44 |
0 |
return hasFeatures; |
| 45 |
|
} |
| 46 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 47 |
0 |
public Map<String, FeatureColourI> getFeatureColours()... |
| 48 |
|
{ |
| 49 |
0 |
return featureColours; |
| 50 |
|
} |
| 51 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 52 |
0 |
public Map<String, FeatureMatcherSetI> getFeatureFilters()... |
| 53 |
|
{ |
| 54 |
0 |
return featureFilters; |
| 55 |
|
} |
| 56 |
|
} |