X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2FAnnotationRowFilterI.java;fp=src%2Fjalview%2Fapi%2FAnnotationRowFilterI.java;h=b8d47064959e0fed76dfaee8655a744a710f04aa;hb=ead72caff9aef9b7103dbb15907aeae777200832;hp=0000000000000000000000000000000000000000;hpb=1f8022f2b026e9852c76f0803d92da016a1bde5e;p=jalview.git diff --git a/src/jalview/api/AnnotationRowFilterI.java b/src/jalview/api/AnnotationRowFilterI.java new file mode 100644 index 0000000..b8d4706 --- /dev/null +++ b/src/jalview/api/AnnotationRowFilterI.java @@ -0,0 +1,16 @@ +package jalview.api; + +import java.util.Vector; + +public interface AnnotationRowFilterI +{ + public Vector getAnnotationItems(boolean isSeqAssociated); + + public void modelChanged(); + + public void valueChanged(boolean updateAllAnnotation); + + public void updateView(); + + public void reset(); +}