made threshold type enumaration into set of constants
authorjprocter <Jim Procter>
Fri, 2 Apr 2010 14:42:32 +0000 (14:42 +0000)
committerjprocter <Jim Procter>
Fri, 2 Apr 2010 14:42:32 +0000 (14:42 +0000)
src/jalview/schemes/AnnotationColourGradient.java

index 7233b9e..860ea7c 100755 (executable)
@@ -24,11 +24,11 @@ import jalview.datamodel.*;
 
 public class AnnotationColourGradient extends ResidueColourScheme
 {
-  public static int NO_THRESHOLD = -1;
+  public static final int NO_THRESHOLD = -1;
 
-  public static int BELOW_THRESHOLD = 0;
+  public static final int BELOW_THRESHOLD = 0;
 
-  public static int ABOVE_THRESHOLD = 1;
+  public static final int ABOVE_THRESHOLD = 1;
 
   public AlignmentAnnotation annotation;