JAL-4375 Add an AnnotationColouringI interface, and generic AnnotationColouringRanges...
[jalview.git] / src / jalview / datamodel / annotations / AnnotationRowBuilder.java
index 2dec59c..648b173 100644 (file)
@@ -50,6 +50,23 @@ public class AnnotationRowBuilder
     return tfType;
   }
 
+  /**
+   * Colouring model for the annotation
+   * 
+   * @param ac
+   */
+  private AnnotationColouringI annotationColouring = null;
+
+  public void setAnnotationColouring(AnnotationColouringI ac)
+  {
+    annotationColouring = ac;
+  }
+
+  public AnnotationColouringI getAnnotationColouring()
+  {
+    return annotationColouring;
+  }
+
   public String getName()
   {
     return name;