JAL-4353 Add a 'random' colour to produce a random colour.
[jalview.git] / src / jalview / util / ColorUtils.java
index 5db333f..e9c66bd 100644 (file)
 
 package jalview.util;
 
-import java.util.Locale;
-
 import java.awt.Color;
 import java.util.HashMap;
+import java.util.Locale;
 import java.util.Map;
 import java.util.Random;
 
 public class ColorUtils
 {
   private static final int MAX_CACHE_SIZE = 1729;
+
   /*
    * a cache for colours generated from text strings
    */
@@ -69,6 +69,18 @@ public class ColorUtils
   }
 
   /**
+   * 
+   * @return random color
+   */
+  public static final Color getARandomColor()
+  {
+
+    Color col = new Color((int) (Math.random() * 255),
+            (int) (Math.random() * 255), (int) (Math.random() * 255));
+    return col;
+  }
+
+  /**
    * Convert to Tk colour code format
    * 
    * @param colour
@@ -221,6 +233,15 @@ public class ColorUtils
     colour = colour.trim();
 
     Color col = null;
+
+    if ("random".equals(colour))
+    {
+      Random rand = new Random();
+      col = new Color(rand.nextInt(256), rand.nextInt(256),
+              rand.nextInt(256));
+      return col;
+    }
+
     try
     {
       int value = Integer.parseInt(colour, 16);