X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FContactListI.java;h=da55403132fd69d1e8d4e262d28b96ede200ccf9;hb=ca160187a050f6d4e50158cd5b51f75c83a7179e;hp=045973201fb9cda101d116ae7d393d3207dc11f4;hpb=10c287e10560169a80c575b7d1f6fd7f4695cf49;p=jalview.git diff --git a/src/jalview/datamodel/ContactListI.java b/src/jalview/datamodel/ContactListI.java index 0459732..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 - * - * @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; + } }