JAL-2494 javadoc for AnnotatedCollectionI.findAnnotations
authorJim Procter <jprocter@issues.jalview.org>
Thu, 27 Apr 2017 15:25:24 +0000 (16:25 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Thu, 27 Apr 2017 15:25:49 +0000 (16:25 +0100)
src/jalview/datamodel/Alignment.java
src/jalview/datamodel/AnnotatedCollectionI.java

index 2dafc0c..17dfb4c 100755 (executable)
@@ -1635,10 +1635,6 @@ public class Alignment implements AlignmentI
     return aa;
   }
 
-  /**
-   * Returns an iterable collection of any annotations that match on given
-   * sequence ref, calcId and label (ignoring null values).
-   */
   @Override
   public Iterable<AlignmentAnnotation> findAnnotations(SequenceI seq,
           String calcId, String label)
index 3f6c515..2963fd5 100644 (file)
@@ -40,6 +40,17 @@ public interface AnnotatedCollectionI extends SequenceCollectionI
    */
   Iterable<AlignmentAnnotation> findAnnotation(String calcId);
 
+  /**
+   * Returns an iterable collection of any annotations that match on given
+   * sequence ref, calcId and label (ignoring null values).
+   * 
+   * @param seq
+   *          null or reference sequence to select annotation for
+   * @param calcId
+   *          null or the calcId to select annotation for
+   * @param label
+   *          null or the label to select annotation for
+   */
   Iterable<AlignmentAnnotation> findAnnotations(SequenceI seq,
           String calcId, String label);