X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSequenceI.java;h=ca12c8310b692cb4a678d08ddda9f639f06bbd14;hb=08b87509ada06ac8614424247346daef4054b41a;hp=5e2355d026c5a7511eabf808ac747ff8da25faaa;hpb=2d241446c80365862d31e76f2ecccaab33a1547f;p=jalview.git diff --git a/src/jalview/datamodel/SequenceI.java b/src/jalview/datamodel/SequenceI.java index 5e2355d..ca12c83 100755 --- a/src/jalview/datamodel/SequenceI.java +++ b/src/jalview/datamodel/SequenceI.java @@ -25,7 +25,6 @@ import jalview.datamodel.features.SequenceFeaturesI; import jalview.util.MapList; import jalview.ws.params.InvalidArgumentException; -import java.awt.Color; import java.util.BitSet; import java.util.Iterator; import java.util.List; @@ -387,6 +386,12 @@ public interface SequenceI extends ASequenceI */ public boolean addSequenceFeature(SequenceFeature sf); + /** + * Deletes the feature from the sequence (if found). To be precise, deletes + * the first feature {@code f} found where {@code f.equals(sf)}. + * + * @param sf + */ public void deleteFeature(SequenceFeature sf); public void setDatasetSequence(SequenceI seq); @@ -585,11 +590,45 @@ public interface SequenceI extends ASequenceI */ public int firstResidueOutsideIterator(Iterator it); - public Color getColor(int i); + /** + * @author Bob Hanson 2019.07.30 + * + * get a 4-byte color, with caching + * + */ + public int getColor(int i); - public Color setColor(int i, Color c); + /** + * @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(); + /** + * Answers a (possibly empty) list of features of the specified type that + * overlap the specified column position. If parameter {@code result} is not + * null, features are appended to it and the (possibly extended) list is + * returned. + */ + List findFeatures(int column, String type, + List result); + + /** + * Answers true if this store contains at least one feature, else false + * + * @return + */ + public boolean hasFeatures(String type); + }