Clover icon

Coverage Report

  1. Project Clover database Thu Dec 4 2025 14:43:25 GMT
  2. Package jalview.ws2.actions.alignment

File AlignmentResult.java

 

Coverage histogram

../../../../img/srcFileCovDistChart6.png
37% of files have more coverage

Code metrics

0
6
4
1
48
31
4
0.67
1.5
4
1

Classes

Class Line # Actions
AlignmentResult 18 6 4
0.660%
 

Contributing tests

This file is covered by 19 tests. .

Source view

1    package jalview.ws2.actions.alignment;
2   
3    import java.util.List;
4   
5    import jalview.datamodel.AlignmentI;
6    import jalview.datamodel.AlignmentOrder;
7    import jalview.datamodel.HiddenColumns;
8    import jalview.ws2.actions.api.TaskEventListener;
9   
10    /**
11    * A data container storing the output of multiple sequence alignment services.
12    * The object is constructed by an {@link AlignmentTask} on completion and
13    * passed to the handler {@link TaskEventListener#taskCompleted(TaskI, Object)}
14    * method as a result.
15    *
16    * @author mmwarowny
17    */
 
18    public class AlignmentResult
19    {
20    final AlignmentI aln;
21   
22    final List<AlignmentOrder> alorders;
23   
24    final HiddenColumns hidden;
25   
 
26  26 toggle AlignmentResult(AlignmentI aln, List<AlignmentOrder> alorders,
27    HiddenColumns hidden)
28    {
29  26 this.aln = aln;
30  26 this.alorders = alorders;
31  26 this.hidden = hidden;
32    }
33   
 
34  2 toggle public AlignmentI getAlignment()
35    {
36  2 return aln;
37    }
38   
 
39  0 toggle public List<AlignmentOrder> getAlignmentOrders()
40    {
41  0 return alorders;
42    }
43   
 
44  0 toggle public HiddenColumns getHiddenColumns()
45    {
46  0 return hidden;
47    }
48    }