JAL-1114 - refactor methods handling Vectors and Hashtables to Lists and Maps, and...
[jalview.git] / src / jalview / datamodel / AnnotatedCollectionI.java
1 package jalview.datamodel;
2
3 public interface AnnotatedCollectionI extends SequenceCollectionI
4 {
5
6   /**
7    * TODO: decide if null is a valid response if there is no annotation on the object
8    * @return null
9    */
10   AlignmentAnnotation[] getAlignmentAnnotation();
11
12   Iterable<AlignmentAnnotation> findAnnotation(String calcId);
13
14 }