X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2FAlignmentViewPanel.java;fp=src%2Fjalview%2Fapi%2FAlignmentViewPanel.java;h=010fb3ded10be35f1940db683695fa76adf43ef1;hb=b57a02c25e335d033c97f8a6bacd6b54f62bd2b6;hp=70bb3d65749d7a91ad59631475bd1521851d57ad;hpb=1cc81e06ac2faa5ee4b8879e9fa019956e34259f;p=jalview.git diff --git a/src/jalview/api/AlignmentViewPanel.java b/src/jalview/api/AlignmentViewPanel.java index 70bb3d6..010fb3d 100644 --- a/src/jalview/api/AlignmentViewPanel.java +++ b/src/jalview/api/AlignmentViewPanel.java @@ -23,23 +23,29 @@ import jalview.structure.StructureSelectionManager; /** * abstract interface implemented by alignment panels holding an alignment view + * * @author JimP - * + * */ public interface AlignmentViewPanel extends OOMHandlerI { AlignmentI getAlignment(); + StructureSelectionManager getStructureSelectionManager(); + /** * repaint the alignment view after a datamodel update. - * @param updateOverview - if true, the overview panel will also be updated and repainted + * + * @param updateOverview + * - if true, the overview panel will also be updated and repainted */ - + void paintAlignment(boolean updateOverview); + /** - * automatically adjust annotation panel height for new annotation - * whilst ensuring the alignment is still visible. + * automatically adjust annotation panel height for new annotation whilst + * ensuring the alignment is still visible. */ void adjustAnnotationHeight(); }