JAL-2349 method to get contact intensity for given site
[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   /**
16    * get a value representing contact at column for this site
17    * 
18    * @param column
19    * @return
20    */
21   double getContactAt(int column);
22
23 }