JAL-961 - annotatable datamodel objects can be queried to obtain annotation with...
[jalview.git] / src / jalview / datamodel / AnnotatedCollectionI.java
index d7a0339..085fb70 100644 (file)
@@ -1,7 +1,5 @@
 package jalview.datamodel;
 
-import java.util.List;
-
 public interface AnnotatedCollectionI
 {
 
@@ -11,4 +9,6 @@ public interface AnnotatedCollectionI
    */
   AlignmentAnnotation[] getAlignmentAnnotation();
 
+  Iterable<AlignmentAnnotation> findAnnotation(String calcId);
+
 }