JAL-2068 framework and example scripts for pluggable alignment
[jalview.git] / src / jalview / workers / AnnotationProviderI.java
1 package jalview.workers;
2
3 import jalview.datamodel.AlignmentAnnotation;
4 import jalview.datamodel.AlignmentI;
5 import jalview.gui.FeatureRenderer;
6
7 import java.util.List;
8
9 /**
10  * Interface to be satisfied by any class which computes one or more alignment
11  * annotations
12  */
13 public interface AnnotationProviderI
14 {
15   List<AlignmentAnnotation> calculateAnnotation(AlignmentI al,
16           FeatureRenderer fr);
17 }