| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
package jalview.datamodel; |
| 22 |
|
|
| 23 |
|
import java.awt.Color; |
| 24 |
|
import java.util.BitSet; |
| 25 |
|
import java.util.List; |
| 26 |
|
|
| |
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
| 27 |
|
public interface GroupSetI |
| 28 |
|
{ |
| 29 |
|
boolean hasGroups(); |
| 30 |
|
|
| 31 |
|
String getNewick(); |
| 32 |
|
|
| 33 |
|
boolean hasTree(); |
| 34 |
|
|
| 35 |
|
void updateGroups(List<BitSet> colGroups); |
| 36 |
|
|
| 37 |
|
BitSet getGroupsFor(int column); |
| 38 |
|
|
| 39 |
|
Color getColourForGroup(BitSet bs); |
| 40 |
|
|
| 41 |
|
void setColorForGroup(BitSet bs, Color color); |
| 42 |
|
|
| 43 |
|
void restoreGroups(List<BitSet> newgroups, String treeMethod, String tree, |
| 44 |
|
double thresh2); |
| 45 |
|
|
| 46 |
|
boolean hasCutHeight(); |
| 47 |
|
|
| 48 |
|
double getCutHeight(); |
| 49 |
|
|
| 50 |
|
String getTreeMethod(); |
| 51 |
|
|
| 52 |
|
List<BitSet> getGroups(); |
| 53 |
|
|
| 54 |
|
void transferGroupColorsTo(AlignmentAnnotation aa); |
| 55 |
|
|
| 56 |
|
} |