JAL-4134 JAL-3855 store/restore groups, tree and threshold used to cluster a PAE...
[jalview.git] / src / jalview / datamodel / ContactListI.java
index 4d5142a..ac06adb 100644 (file)
@@ -1,23 +1,15 @@
 package jalview.datamodel;
 
-import java.awt.Color;
-
-public interface ContactListI
+public interface ContactListI extends ContactListProviderI
 {
 
-  int getColumnWidth();
-
-  int getContactHeight();
-
-  Color getColorForScore(int column);
-
-  
   /**
-   * get a value representing contact at column for this site
+   * return bounds for range
    * 
-   * @param column
-   * @return
+   * @param from_column
+   * @param to_column
+   * @return double[] { min, max,
    */
-  double getContactAt(int column);
+  ContactRange getRangeFor(int from_column, int to_column);
 
 }