Color textColour = Color.black;
Color textColour2 = Color.white;
-
+ private boolean rightAlignIds = false;
+
+ private AnnotationColumnSelection currentAnnotationColumnSelectionState;
/**
* Creates a new AlignViewport object.
*
{
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;
+ }
}