X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2FAlignViewportI.java;h=4f78145cc6d326947ae160705182c44d45951214;hb=dfa04e77181fccfa6229ffef1591fc9c622d9b39;hp=15e5f1d868b7c3074ca7fe09e5e99673ec35ce97;hpb=e3ff86bf4b17ec3cf58bfe8fdb152bfc431765b3;p=jalview.git diff --git a/src/jalview/api/AlignViewportI.java b/src/jalview/api/AlignViewportI.java index 15e5f1d..4f78145 100644 --- a/src/jalview/api/AlignViewportI.java +++ b/src/jalview/api/AlignViewportI.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8) - * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * @@ -14,6 +14,7 @@ * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.api; @@ -159,11 +160,17 @@ public interface AlignViewportI void updateGroupAnnotationSettings(boolean applyGlobalSettings, boolean preserveNewGroupSettings); + void setSequenceColour(SequenceI seq, Color col); + + Color getSequenceColour(SequenceI seq); + + void updateSequenceIdColours(); SequenceGroup getSelectionGroup(); SequenceI[] getSequenceSelection(); + void clearSequenceColours(); CigarArray getViewAsCigars(boolean selectedRegionOnly); @@ -177,5 +184,7 @@ public interface AlignViewportI char getGapCharacter(); + void setColumnSelection(ColumnSelection cs); + }