JAL-629 Tidy up tests and replaced methods before merge to develop
[jalview.git] / src / jalview / datamodel / ContactListI.java
index c08c07b..ac06adb 100644 (file)
@@ -1,14 +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);
+  /**
+   * return bounds for range
+   * 
+   * @param from_column
+   * @param to_column
+   * @return double[] { min, max,
+   */
+  ContactRange getRangeFor(int from_column, int to_column);
 
 }