X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSequenceI.java;fp=src%2Fjalview%2Fdatamodel%2FSequenceI.java;h=933f33292f8a29c028d3b99e2715fbd438a799dc;hb=4f77328104498504339216829abf5ea87e2791ec;hp=0b2656416e5ab49339fed5cd60cc801cb86b90e2;hpb=2b8c0785318a3528e1876e8e2dd48b7d831eae69;p=jalview.git diff --git a/src/jalview/datamodel/SequenceI.java b/src/jalview/datamodel/SequenceI.java index 0b26564..933f332 100755 --- a/src/jalview/datamodel/SequenceI.java +++ b/src/jalview/datamodel/SequenceI.java @@ -584,48 +584,6 @@ public interface SequenceI extends ASequenceI */ public int firstResidueOutsideIterator(Iterator it); - /** - * @author Bob Hanson 2019.07.30 - * - * get a 4-byte color, with caching - * - */ - public int getColor(int i); - - /** - * @author Bob Hanson 2019.07.30 - * - * set a 4-byte color, with caching - * - */ - public int setColor(int i, int argb); - - /** - * @author Bob Hanson 2019.07.30 - * - * allows resetting the color cache - * - */ - public void resetColors(); - - /** - * allows passing the result ArrayList as a parameter to avoid unnecessary - * construction - * - * @author Bob Hanson 2019.07.30 - * - * - */ - List findFeatures(int column, String type, - List result); - - /** - * allows early intervention for renderer if false - * - * @author Bob Hanson 2019.07.30 - * - */ - public boolean hasFeatures(String type); }