formatting
[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
8    * object
9    * 
10    * @return null
11    */
12   AlignmentAnnotation[] getAlignmentAnnotation();
13
14   Iterable<AlignmentAnnotation> findAnnotation(String calcId);
15
16 }