JAL-1066 JAL-968 common interface for objects that can be associated with alignment...
[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 }