test cc change revoked.
[jalview.git] / src / jalview / datamodel / Annotation.java
index ca5f9e0..9fc69bb 100755 (executable)
@@ -43,7 +43,7 @@ public class Annotation
   // add visual cues here
 
   /** DOCUMENT ME!! */
-  public Color colour = Color.black;
+  public Color colour;
 
   /**
    * Creates a new Annotation object.
@@ -94,4 +94,13 @@ public class Annotation
     value = that.value;
     colour = that.colour;
   }
+
+  /**
+   * Value only annotation.
+   * @param val value at this annotation position
+   */
+  public Annotation(float val)
+  {
+    this(null, null, ' ', val);
+  }
 }