X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FContactListI.java;h=ac06adb825712db33037a7bc144534e0caceb37f;hb=8b5145f0837eeaeb1f029de179a3715a174dfa09;hp=045973201fb9cda101d116ae7d393d3207dc11f4;hpb=10c287e10560169a80c575b7d1f6fd7f4695cf49;p=jalview.git diff --git a/src/jalview/datamodel/ContactListI.java b/src/jalview/datamodel/ContactListI.java index 0459732..ac06adb 100644 --- a/src/jalview/datamodel/ContactListI.java +++ b/src/jalview/datamodel/ContactListI.java @@ -1,31 +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 colour representing contacts from i through to j for this site - * - * @param i - * @param j - * @return - */ - Color getColorForRange(int i, int j); - /** - * 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); }