37c4e076b27f79c07049eb8af58ecce97d922c78
[jalview.git] / src / jalview / datamodel / ContactListProviderI.java
1 package jalview.datamodel;
2
3 public interface ContactListProviderI
4 {
5
6   /**
7    * dimension of list where getContactAt(column<getContactHeight()) may return
8    * a value
9    * 
10    * @return
11    */
12   int getContactHeight();
13
14   /**
15    * get a value representing contact at column for this site
16    * 
17    * @param column
18    * @return Double.NaN or a contact strength for this site
19    */
20   double getContactAt(int column);
21
22 }