JAL-1807 explicit imports (jalview.schemes)
[jalview.git] / src / jalview / schemes / ColourSchemeProperty.java
index 5715ada..025a7a0 100755 (executable)
@@ -21,6 +21,7 @@
 package jalview.schemes;
 
 import jalview.datamodel.AnnotatedCollectionI;
+import jalview.util.ColorUtils;
 
 import java.awt.Color;
 
@@ -415,8 +416,7 @@ public class ColourSchemeProperty
         try
         {
           // fix the launchApp user defined coloursheme transfer bug
-          jalview.schemes.UserColourScheme ucs = new jalview.schemes.UserColourScheme(
-                  "white");
+          UserColourScheme ucs = new UserColourScheme("white");
           ucs.parseAppletParameter(name);
 
         } catch (Exception e)
@@ -442,8 +442,7 @@ public class ColourSchemeProperty
    * @return null or an instance of the colourscheme configured to colour given
    *         sequence set
    */
-  public static ColourSchemeI getColour(
-          jalview.datamodel.AnnotatedCollectionI coll, int index)
+  public static ColourSchemeI getColour(AnnotatedCollectionI coll, int index)
   {
     // TODO 3.0 2.8 refactor signature to take an alignmentI like container so
     // colourschemes based on annotation can be initialised
@@ -621,8 +620,7 @@ public class ColourSchemeProperty
     // Generate random colors and store
     for (; j <= n; j++)
     {
-      rnaHelices[j] = jalview.util.ColorUtils
-              .generateRandomColor(Color.white);
+      rnaHelices[j] = ColorUtils.generateRandomColor(Color.white);
     }
   }