JAL-643 - abstracted colourscheme components to allow consensus/colouring to be propa...
[jalview.git] / src / jalview / schemes / AnnotationColourGradient.java
index 8ca4420..c3357ad 100755 (executable)
@@ -18,7 +18,6 @@
  */
 package jalview.schemes;
 
-import jalview.analysis.Conservation;
 import jalview.datamodel.AlignmentAnnotation;
 import jalview.datamodel.AnnotatedCollectionI;
 import jalview.datamodel.GraphLine;
@@ -26,11 +25,10 @@ import jalview.datamodel.SequenceCollectionI;
 import jalview.datamodel.SequenceI;
 
 import java.awt.Color;
-import java.util.Hashtable;
 import java.util.IdentityHashMap;
 import java.util.Map;
 
-public class AnnotationColourGradient extends ResidueColourScheme
+public class AnnotationColourGradient extends FollowerColourScheme
 {
   public static final int NO_THRESHOLD = -1;
 
@@ -48,8 +46,6 @@ public class AnnotationColourGradient extends ResidueColourScheme
 
   float r1, g1, b1, rr, gg, bb, dr, dg, db;
 
-  ColourSchemeI colourScheme;
-
   private boolean predefinedColours = false;
 
   private boolean seqAssociated = false;
@@ -157,11 +153,6 @@ public class AnnotationColourGradient extends ResidueColourScheme
     }
   }
 
-  public ColourSchemeI getBaseColour()
-  {
-    return colourScheme;
-  }
-
   public Color getMinColour()
   {
     return new Color((int) r1, (int) g1, (int) b1);
@@ -207,7 +198,7 @@ public class AnnotationColourGradient extends ResidueColourScheme
     }
     if ((threshold == 0) || aboveThreshold(c, j))
     {
-      if (j < annotation.annotations.length
+      if (annotation.annotations!=null && j < annotation.annotations.length
               && annotation.annotations[j] != null
               && !jalview.util.Comparison.isGap(c))
       {
@@ -292,28 +283,4 @@ public class AnnotationColourGradient extends ResidueColourScheme
   {
     seqAssociated = sassoc;
   }
-  @Override
-  public void setConsensus(Hashtable[] consensus)
-  {
-    if (colourScheme!=null)
-    {
-      colourScheme.setConsensus(consensus);
-    }
-  }
-  @Override
-  public void setConservation(Conservation cons)
-  {
-    if (colourScheme!=null)
-    {
-      colourScheme.setConservation(cons);
-    }
-  }
-  @Override
-  public void setConservationInc(int i)
-  {
-    if (colourScheme!=null)
-    {
-      colourScheme.setConservationInc(i);
-    }
-  }
 }