package jalview.workers; import jalview.api.FeatureRenderer; import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.AlignmentI; import java.util.List; /** * Interface to be satisfied by any class which computes one or more alignment * annotations */ public interface AnnotationProviderI { List calculateAnnotation(AlignmentI al, FeatureRenderer fr); }