84fcb7c488ce021f250fe74fae5360296f5749e3
[jalview.git] / src / jalview / datamodel / ContactListI.java
1 package jalview.datamodel;
2
3 import java.awt.Color;
4
5 public interface ContactListI
6 {
7
8   int getColumnWidth();
9
10   int getContactHeight();
11
12   Color getColorForScore(int column);
13
14   /**
15    * return colour representing contacts from i through to j for this site
16    * 
17    * @param from_column
18    * @param to_column
19    * @return
20    */
21   Color getColorForRange(int from_column, int to_column);
22   
23   /**
24    * get a value representing contact at column for this site
25    * 
26    * @param column
27    * @return
28    */
29   double getContactAt(int column);
30
31 }