JAL-2349 allow contact matrix to provide labels for its annotation row
[jalview.git] / src / jalview / datamodel / ContactMatrixI.java
1 package jalview.datamodel;
2
3 public interface ContactMatrixI
4 {
5
6   ContactListI getContactList(int column);
7
8   float getMin();
9
10   float getMax();
11
12   boolean hasReferenceSeq();
13
14   SequenceI getReferenceSeq();
15
16   String getAnnotDescr();
17
18   String getAnnotLabel();
19
20 }