X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Frenderer%2FResidueShaderI.java;h=7e67598448972128269dac69e764d4ef368ac44e;hb=bbc8fc127287ad3a11f0b470d37d741ddca162ff;hp=5d024d4f8510d20ef571e76e6e9c40b6d0bc4471;hpb=3d0101179759ef157b088ea135423cd909512d9f;p=jalview.git diff --git a/src/jalview/renderer/ResidueShaderI.java b/src/jalview/renderer/ResidueShaderI.java index 5d024d4..7e67598 100644 --- a/src/jalview/renderer/ResidueShaderI.java +++ b/src/jalview/renderer/ResidueShaderI.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General License for more details. + * + * You should have received a copy of the GNU General License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.renderer; import jalview.analysis.Conservation; @@ -12,16 +32,15 @@ import java.util.Map; public interface ResidueShaderI { + void setConsensus(ProfilesI cons); - public abstract void setConsensus(ProfilesI cons); + boolean conservationApplied(); - public abstract boolean conservationApplied(); + void setConservationApplied(boolean conservationApplied); - public abstract void setConservationApplied(boolean conservationApplied); + void setConservation(Conservation cons); - public abstract void setConservation(Conservation cons); - - public abstract void alignmentChanged(AnnotatedCollectionI alignment, + void alignmentChanged(AnnotatedCollectionI alignment, Map hiddenReps); /** @@ -31,19 +50,19 @@ public interface ResidueShaderI * @param consensusThreshold * @param ignoreGaps */ - public abstract void setThreshold(int consensusThreshold, + void setThreshold(int consensusThreshold, boolean ignoreGaps); - public abstract void setConservationInc(int i); + void setConservationInc(int i); - public abstract int getConservationInc(); + int getConservationInc(); /** * Get the percentage threshold for this colour scheme * * @return Returns the percentage threshold */ - public abstract int getThreshold(); + int getThreshold(); /** * Returns the possibly context dependent colour for the given symbol at the @@ -55,11 +74,11 @@ public interface ResidueShaderI * @param seq * @return */ - public abstract Color findColour(char symbol, int position, + Color findColour(char symbol, int position, SequenceI seq); - public abstract ColourSchemeI getColourScheme(); + ColourSchemeI getColourScheme(); - public abstract void setColourScheme(ColourSchemeI cs); + void setColourScheme(ColourSchemeI cs); } \ No newline at end of file