X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAnnotationColourChooser.java;h=7fb868fcd829f6b42efb0fc081b6f1fcc01d339d;hb=fed4354148da6576ec8e52b1b6d97dd3578b735b;hp=eca0b4c88b9ed16bdea371c851649060a4629d4c;hpb=a45774ee31d9f35d4eff46d54d7deab719afb092;p=jalview.git diff --git a/src/jalview/gui/AnnotationColourChooser.java b/src/jalview/gui/AnnotationColourChooser.java index eca0b4c..7fb868f 100755 --- a/src/jalview/gui/AnnotationColourChooser.java +++ b/src/jalview/gui/AnnotationColourChooser.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle * * This file is part of Jalview. * @@ -51,10 +51,10 @@ public class AnnotationColourChooser extends JPanel public AnnotationColourChooser(AlignViewport av, final AlignmentPanel ap) { oldcs = av.getGlobalColourScheme(); - if (av.alignment.getGroups() != null) + if (av.getAlignment().getGroups() != null) { oldgroupColours = new Hashtable(); - Vector allGroups = ap.av.alignment.getGroups(); + Vector allGroups = ap.av.getAlignment().getGroups(); SequenceGroup sg; for (int g = 0; g < allGroups.size(); g++) { @@ -91,7 +91,7 @@ public class AnnotationColourChooser extends JPanel } }); - if (av.alignment.getAlignmentAnnotation() == null) + if (av.getAlignment().getAlignmentAnnotation() == null) { return; } @@ -113,9 +113,9 @@ public class AnnotationColourChooser extends JPanel adjusting = true; Vector list = new Vector(); int index = 1; - for (int i = 0; i < av.alignment.getAlignmentAnnotation().length; i++) + for (int i = 0; i < av.getAlignment().getAlignmentAnnotation().length; i++) { - String label = av.alignment.getAlignmentAnnotation()[i].label; + String label = av.getAlignment().getAlignmentAnnotation()[i].label; if (!list.contains(label)) list.addElement(label); else @@ -378,7 +378,7 @@ public class AnnotationColourChooser extends JPanel return; } - currentAnnotation = av.alignment.getAlignmentAnnotation()[annotations + currentAnnotation = av.getAlignment().getAlignmentAnnotation()[annotations .getSelectedIndex()]; int aboveThreshold = -1; @@ -450,9 +450,9 @@ public class AnnotationColourChooser extends JPanel av.setGlobalColourScheme(acg); - if (av.alignment.getGroups() != null) + if (av.getAlignment().getGroups() != null) { - Vector allGroups = ap.av.alignment.getGroups(); + Vector allGroups = ap.av.getAlignment().getGroups(); SequenceGroup sg; for (int g = 0; g < allGroups.size(); g++) { @@ -508,9 +508,9 @@ public class AnnotationColourChooser extends JPanel void reset() { av.setGlobalColourScheme(oldcs); - if (av.alignment.getGroups() != null) + if (av.getAlignment().getGroups() != null) { - Vector allGroups = ap.av.alignment.getGroups(); + Vector allGroups = ap.av.getAlignment().getGroups(); SequenceGroup sg; for (int g = 0; g < allGroups.size(); g++) {