X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FContactListI.java;h=84fcb7c488ce021f250fe74fae5360296f5749e3;hb=3e88ca066c0cc12f1f1f4c63e9cd49e19586b2bd;hp=c08c07b0487220ebbce6151d546a1fe2536c23ae;hpb=6fc163433164d93374330fa0a603eea1e1fd42b3;p=jalview.git diff --git a/src/jalview/datamodel/ContactListI.java b/src/jalview/datamodel/ContactListI.java index c08c07b..84fcb7c 100644 --- a/src/jalview/datamodel/ContactListI.java +++ b/src/jalview/datamodel/ContactListI.java @@ -11,4 +11,21 @@ public interface ContactListI Color getColorForScore(int column); + /** + * return colour representing contacts from i through to j for this site + * + * @param from_column + * @param to_column + * @return + */ + Color getColorForRange(int from_column, int to_column); + + /** + * get a value representing contact at column for this site + * + * @param column + * @return + */ + double getContactAt(int column); + }