Merge remote-tracking branch 'origin/Tcoffee_JAL-1065' into develop
[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 }