X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSequenceI.java;h=6c82bf3aa6a30da7971c5889cf05b6dd9d87cf62;hb=6323f1a33650360f131f25cf2797e5600ceee49f;hp=7ecb4ed53d54a0a59493b1c4fb0ffb2eaed75a7d;hpb=a8a60500f1be9c3e02976f2193eb62ff5a302220;p=jalview.git diff --git a/src/jalview/datamodel/SequenceI.java b/src/jalview/datamodel/SequenceI.java index 7ecb4ed..6c82bf3 100755 --- a/src/jalview/datamodel/SequenceI.java +++ b/src/jalview/datamodel/SequenceI.java @@ -20,6 +20,8 @@ */ package jalview.datamodel; +import jalview.datamodel.features.SequenceFeaturesI; + import java.util.List; import java.util.Vector; @@ -267,6 +269,13 @@ public interface SequenceI extends ASequenceI public SequenceFeature[] getSequenceFeatures(); /** + * Answers the object holding features for the sequence + * + * @return + */ + SequenceFeaturesI getFeatures(); + + /** * Replaces the array of sequence features associated with this sequence with * a new array reference. If this sequence has a dataset sequence, then this * method will update the dataset sequence's feature array @@ -339,7 +348,7 @@ public interface SequenceI extends ASequenceI /** * Adds the given sequence feature and returns true, or returns false if it is - * already present on the sequence + * already present on the sequence, or if the feature type is null. * * @param sf * @return @@ -477,13 +486,14 @@ public interface SequenceI extends ASequenceI public List getPrimaryDBRefs(); /** - * Returns a (possibly empty) list of sequence features of the given type that - * overlap the range from-to (inclusive) + * Returns a (possibly empty) list of sequence features that overlap the range + * from-to (inclusive), optionally restricted to one or more specified feature + * types * - * @param type * @param from * @param to + * @param types * @return */ - List findFeatures(String type, int from, int to); + List findFeatures(int from, int to, String... types); }