X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fworkers%2FFeatureSetCounterI.java;fp=src%2Fjalview%2Fworkers%2FFeatureSetCounterI.java;h=fec8afd134fed00d7c2ca9fab5679998f6da567b;hb=29f7e24d4261af7af91dd5d1192fc5640997e754;hp=e14952fd0e0509974f253b6a6defbc28a7df4779;hpb=c3c8eb857e5544602671ea205da67f082de5a306;p=jalview.git diff --git a/src/jalview/workers/FeatureSetCounterI.java b/src/jalview/workers/FeatureSetCounterI.java index e14952f..fec8afd 100644 --- a/src/jalview/workers/FeatureSetCounterI.java +++ b/src/jalview/workers/FeatureSetCounterI.java @@ -21,10 +21,10 @@ package jalview.workers; -import jalview.datamodel.SequenceFeature; - import java.util.List; +import jalview.datamodel.SequenceFeature; + /** * An interface for a type that returns counts (per computed annotation type) of * any value of interest at a sequence position that can be determined from the @@ -66,20 +66,22 @@ public interface FeatureSetCounterI String[] getDescriptions(); /** - * Returns the colour (as [red, green, blue] values in the range 0-255) to use - * for the minimum value on histogram bars. If this is different to - * getMaxColour(), then bars will have a graduated colour. + * for each property returned from getNames Returns the colour (as [red, + * green, blue] values in the range 0-255) to use for the minimum value on + * histogram bars. If this is different to getMaxColour(), then bars will have + * a graduated colour. * * @return */ - int[] getMinColour(); + int[] getMinColour(int anrow); /** - * Returns the colour (as [red, green, blue] values in the range 0-255) to use - * for the maximum value on histogram bars. If this is the same as - * getMinColour(), then bars will have a single colour (not graduated). + * for each property returned from getNames Returns the colour (as [red, + * green, blue] values in the range 0-255) to use for the maximum value on + * histogram bars. If this is the same as getMinColour(), then bars will have + * a single colour (not graduated). * * @return */ - int[] getMaxColour(); + int[] getMaxColour(int anrow); }