X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FContactListI.java;h=da55403132fd69d1e8d4e262d28b96ede200ccf9;hb=beb2fee66dde629e3bbb7febb38d0116e1a64df2;hp=84fcb7c488ce021f250fe74fae5360296f5749e3;hpb=31e61a90b20be7b13cb251d3c949cbd2e0c66fa6;p=jalview.git diff --git a/src/jalview/datamodel/ContactListI.java b/src/jalview/datamodel/ContactListI.java index 84fcb7c..da55403 100644 --- a/src/jalview/datamodel/ContactListI.java +++ b/src/jalview/datamodel/ContactListI.java @@ -2,30 +2,22 @@ package jalview.datamodel; import java.awt.Color; -public interface ContactListI -{ - - int getColumnWidth(); +import jalview.renderer.ContactGeometry.contactInterval; - int getContactHeight(); - - Color getColorForScore(int column); +public interface ContactListI extends ContactListProviderI +{ /** - * return colour representing contacts from i through to j for this site + * return bounds for range * * @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 + * @return double[] { min, max, */ - double getContactAt(int column); + ContactRange getRangeFor(int from_column, int to_column); + default Color getColourForGroup() + { + return null; + } }