JAL-3187 basic first version for tooltips only (rendering yet to do)
[jalview.git] / src / jalview / viewmodel / styles / ViewStyle.java
index 16aa580..1d1ab4d 100644 (file)
@@ -365,6 +365,8 @@ public class ViewStyle implements ViewStyleI
 
   private int fontStyle;
 
+  private boolean showComplementFeatures;
+
   /**
    * GUI state
    * 
@@ -1111,4 +1113,16 @@ public class ViewStyle implements ViewStyleI
   {
     proteinFontAsCdna = b;
   }
+
+  @Override
+  public void setShowComplementFeatures(boolean b)
+  {
+    showComplementFeatures = b;
+  }
+
+  @Override
+  public boolean isShowComplementFeatures()
+  {
+    return showComplementFeatures;
+  }
 }