From: Charles Ofoegbu Date: Sat, 10 Jan 2015 14:38:01 +0000 (+0000) Subject: JAL-1553 merge commit X-Git-Tag: Jalview_2_9~120 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=cf994d96657bbc96e6d2bf6f294e4ec6608debcf;p=jalview.git JAL-1553 merge commit --- cf994d96657bbc96e6d2bf6f294e4ec6608debcf diff --cc src/jalview/gui/AlignViewport.java index 38f0ea1,10e14d1..dd61c79 --- a/src/jalview/gui/AlignViewport.java +++ b/src/jalview/gui/AlignViewport.java @@@ -138,6 -148,10 +138,9 @@@ public class AlignViewport extends Alig Color textColour = Color.black; Color textColour2 = Color.white; - + private boolean rightAlignIds = false; + + private AnnotationColumnSelection currentAnnotationColumnSelectionState; /** * Creates a new AlignViewport object. * @@@ -1231,4 -1304,30 +1234,31 @@@ { this.showAutocalculatedAbove = showAutocalculatedAbove; } + ++ + public boolean isShowAnnotation() + { - return showAnnotation; ++ return super.isShowAnnotation(); + } + + public boolean isRightAlignIds() + { + return rightAlignIds; + } + + public void setRightAlignIds(boolean rightAlignIds) + { + this.rightAlignIds = rightAlignIds; + } + + public AnnotationColumnSelection getCurrentAnnotationColumnSelectionState() + { + return currentAnnotationColumnSelectionState; + } + + public void setCurrentAnnotationColumnSelectionState( + AnnotationColumnSelection currentAnnotationColumnSelectionState) + { + this.currentAnnotationColumnSelectionState = currentAnnotationColumnSelectionState; + } }