JAL-1553 merge commit
[jalview.git] / src / jalview / gui / AlignViewport.java
index 38f0ea1..dd61c79 100644 (file)
@@ -138,6 +138,9 @@ public class AlignViewport extends AlignmentViewport implements
   Color textColour = Color.black;
 
   Color textColour2 = Color.white;
+  private boolean rightAlignIds = false;
+
+  private AnnotationColumnSelection currentAnnotationColumnSelectionState;
   /**
    * Creates a new AlignViewport object.
    * 
@@ -1231,4 +1234,31 @@ public class AlignViewport extends AlignmentViewport implements
   {
     this.showAutocalculatedAbove = showAutocalculatedAbove;
   }
+
+
+  public boolean isShowAnnotation()
+  {
+    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;
+  }
 }