X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FContactListI.java;h=d0544b884ad1612baebc3ee246c72656c860265c;hb=f3d6a13271e3f34dfb4e40d6a2a7df1d392f8014;hp=045973201fb9cda101d116ae7d393d3207dc11f4;hpb=10c287e10560169a80c575b7d1f6fd7f4695cf49;p=jalview.git diff --git a/src/jalview/datamodel/ContactListI.java b/src/jalview/datamodel/ContactListI.java index 0459732..d0544b8 100644 --- a/src/jalview/datamodel/ContactListI.java +++ b/src/jalview/datamodel/ContactListI.java @@ -2,30 +2,21 @@ 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 - * - * @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); + default Color getColourForGroup() { + return null; + } }