JAL-3397 impl.IntervalStore and nonc.IntervalStore unified api
[jalview.git] / src / jalview / datamodel / features / SequenceFeaturesI.java
index deed751..fe5e927 100644 (file)
@@ -230,21 +230,20 @@ public interface SequenceFeaturesI
   void deleteAll();
 
   /**
-   * Point-specific parameter return for JavaScript
+   * 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.
    * 
    * @param pos
    * @param type
    * @param result
-   * @return result (JavaScript) or new ArrayList (Java -- see FeatureRender)
-   * @author Bob Hanson 2019.07.30
+   * @return
    */
   List<SequenceFeature> findFeatures(int pos, String type, List<SequenceFeature> result);
 
   /**
-   * @author Bob Hanson 2019.08.01
-   * 
-   * @param type
-   * @return true if this type is in featureStore
+   * Answers true if there are any features of the given type, else false
    */
   boolean hasFeatures(String type);
 }