d7a0339b8c5215ff1cd8022cfd716ad2e24042ca
[jalview.git] / src / jalview / datamodel / AnnotatedCollectionI.java
1 package jalview.datamodel;
2
3 import java.util.List;
4
5 public interface AnnotatedCollectionI
6 {
7
8   /**
9    * TODO: decide if null is a valid response if there is no annotation on the object
10    * @return null
11    */
12   AlignmentAnnotation[] getAlignmentAnnotation();
13
14 }