formatting
[jalview.git] / src / jalview / schemes / ColourSchemeProperty.java
index 1e2db76..608d8ed 100755 (executable)
@@ -29,7 +29,7 @@ import java.awt.Color;
  * values of the colourscheme constants is important for callers of
  * getColourName(int i), since it can be used to enumerate the set of built in
  * colours. The FIRST_COLOUR and LAST_COLOUR symbols are provided for this.
- *
+ * 
  * @author $author$
  * @version $Revision$
  */
@@ -86,7 +86,6 @@ public class ColourSchemeProperty
 
   public static final int TCOFFEE = 15;
 
-
   /**
    * index of first colourscheme (includes 'None')
    */
@@ -96,10 +95,10 @@ public class ColourSchemeProperty
 
   /**
    * DOCUMENT ME!
-   *
+   * 
    * @param name
    *          DOCUMENT ME!
-   *
+   * 
    * @return DOCUMENT ME!
    */
   public static int getColourIndexFromName(String name)
@@ -177,10 +176,10 @@ public class ColourSchemeProperty
 
   /**
    * DOCUMENT ME!
-   *
+   * 
    * @param cs
    *          DOCUMENT ME!
-   *
+   * 
    * @return DOCUMENT ME!
    */
   public static String getColourName(ColourSchemeI cs)
@@ -259,10 +258,10 @@ public class ColourSchemeProperty
 
   /**
    * DOCUMENT ME!
-   *
+   * 
    * @param index
    *          DOCUMENT ME!
-   *
+   * 
    * @return DOCUMENT ME!
    */
   public static String getColourName(int index)
@@ -336,7 +335,7 @@ public class ColourSchemeProperty
       break;
     /*
      * case COVARIATION: ret = "Covariation";
-     *
+     * 
      * break;
      */
     case USER_DEFINED:
@@ -352,9 +351,10 @@ public class ColourSchemeProperty
 
     return ret;
   }
+
   /**
    * retrieve or create colourscheme associated with name
-   *
+   * 
    * @param seqs
    *          sequences to colour
    * @param width
@@ -401,20 +401,24 @@ public class ColourSchemeProperty
   }
 
   /**
-   * Construct an instance of ColourSchemeI corresponding to the given colourscheme index
-   *
+   * Construct an instance of ColourSchemeI corresponding to the given
+   * colourscheme index
+   * 
    * @param seqs
    *          sequences to be coloured by colourscheme
    * @param width
    *          geometry of alignment
    * @param index
    *          colourscheme number
-   *
-   * @return null or an instance of the colourscheme configured to colour given sequence set
+   * 
+   * @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(
+          jalview.datamodel.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
+    // TODO 3.0 2.8 refactor signature to take an alignmentI like container so
+    // colourschemes based on annotation can be initialised
     ColourSchemeI cs = null;
 
     switch (index)
@@ -480,10 +484,10 @@ public class ColourSchemeProperty
 
     case TCOFFEE:
       cs = new TCoffeeColourScheme(coll);
-    // case COVARIATION:
-    // cs = new CovariationColourScheme(annotation);
+      // case COVARIATION:
+      // cs = new CovariationColourScheme(annotation);
 
-    // break;
+      // break;
 
     case USER_DEFINED:
       Color[] col = new Color[24];