X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fappletgui%2FAnnotationColourChooser.java;h=8de751a74c264438a823d3d2e29fb478316a418c;hb=3d0101179759ef157b088ea135423cd909512d9f;hp=f516bc96092356fd2bbd765add980f5060646948;hpb=7c70cb09e9de68ab567e38520d6d09f0c17a3939;p=jalview.git diff --git a/src/jalview/appletgui/AnnotationColourChooser.java b/src/jalview/appletgui/AnnotationColourChooser.java index f516bc9..8de751a 100644 --- a/src/jalview/appletgui/AnnotationColourChooser.java +++ b/src/jalview/appletgui/AnnotationColourChooser.java @@ -109,8 +109,8 @@ public class AnnotationColourChooser extends Panel implements if (oldcs instanceof AnnotationColourGradient) { AnnotationColourGradient acg = (AnnotationColourGradient) oldcs; - currentColours.setState(acg.isPredefinedColours() - || acg.getBaseColour() != null); + currentColours.setState( + acg.isPredefinedColours() || acg.getBaseColour() != null); if (!acg.isPredefinedColours() && acg.getBaseColour() == null) { minColour.setBackground(acg.getMinColour()); @@ -150,9 +150,8 @@ public class AnnotationColourChooser extends Panel implements threshold.select(1); break; default: - throw new Error( - MessageManager - .getString("error.implementation_error_dont_know_threshold_annotationcolourgradient")); + throw new Error(MessageManager.getString( + "error.implementation_error_dont_know_threshold_annotationcolourgradient")); } thresholdIsMin.setState(acg.isThresholdIsMinMax()); thresholdValue.setText("" + acg.getAnnotationThreshold()); @@ -219,8 +218,8 @@ public class AnnotationColourChooser extends Panel implements { minColour.setBackground(av.applet.getDefaultColourParameter( "ANNOTATIONCOLOUR_MIN", Color.orange)); - maxColour.setBackground(av.applet.getDefaultColourParameter( - "ANNOTATIONCOLOUR_MAX", Color.red)); + maxColour.setBackground(av.applet + .getDefaultColourParameter("ANNOTATIONCOLOUR_MAX", Color.red)); } @@ -265,13 +264,13 @@ public class AnnotationColourChooser extends Panel implements thresholdValue.setEnabled(false); thresholdValue.setColumns(5); currentColours.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11)); - currentColours.setLabel(MessageManager - .getString("label.use_original_colours")); + currentColours.setLabel( + MessageManager.getString("label.use_original_colours")); currentColours.addItemListener(this); thresholdIsMin.setBackground(Color.white); - thresholdIsMin.setLabel(MessageManager - .getString("label.threshold_minmax")); + thresholdIsMin + .setLabel(MessageManager.getString("label.threshold_minmax")); this.setLayout(borderLayout1); @@ -411,8 +410,8 @@ public class AnnotationColourChooser extends Panel implements if (!adjusting) { thresholdValue.setText((slider.getValue() / 1000f) + ""); - if (currentColours.getState() - && !(av.getGlobalColourScheme() instanceof AnnotationColourGradient)) + if (currentColours.getState() && !(av + .getGlobalColourScheme() instanceof AnnotationColourGradient)) { changeColour(); } @@ -467,8 +466,8 @@ public class AnnotationColourChooser extends Panel implements return; } - currentAnnotation = av.getAlignment().getAlignmentAnnotation()[annotations - .getSelectedIndex()]; + currentAnnotation = av.getAlignment() + .getAlignmentAnnotation()[annotations.getSelectedIndex()]; int aboveThreshold = -1; if (threshold.getSelectedIndex() == 1) @@ -494,10 +493,10 @@ public class AnnotationColourChooser extends Panel implements else if (aboveThreshold != AnnotationColourGradient.NO_THRESHOLD && currentAnnotation.threshold == null) { - currentAnnotation - .setThreshold(new jalview.datamodel.GraphLine( - (currentAnnotation.graphMax - currentAnnotation.graphMin) / 2f, - "Threshold", Color.black)); + currentAnnotation.setThreshold(new jalview.datamodel.GraphLine( + (currentAnnotation.graphMax - currentAnnotation.graphMin) + / 2f, + "Threshold", Color.black)); } if (aboveThreshold != AnnotationColourGradient.NO_THRESHOLD) @@ -546,14 +545,14 @@ public class AnnotationColourChooser extends Panel implements if (currentColours.getState()) { - sg.setColourScheme(new AnnotationColourGradient( - currentAnnotation, sg.getColourScheme(), aboveThreshold)); + sg.setColourScheme(new AnnotationColourGradient(currentAnnotation, + sg.getColourScheme(), aboveThreshold)); } else { - sg.setColourScheme(new AnnotationColourGradient( - currentAnnotation, minColour.getBackground(), maxColour - .getBackground(), aboveThreshold)); + sg.setColourScheme(new AnnotationColourGradient(currentAnnotation, + minColour.getBackground(), maxColour.getBackground(), + aboveThreshold)); } } }