From: <bra...@us...> - 2010-07-21 21:34:35
|
Revision: 3187 http://archive-access.svn.sourceforge.net/archive-access/?rev=3187&view=rev Author: bradtofel Date: 2010-07-21 21:34:29 +0000 (Wed, 21 Jul 2010) Log Message: ----------- Added method to set the highlighted value, in prep for disabling the active month indicator in the Query Graph Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/util/graph/RegionData.java Modified: trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/util/graph/RegionData.java =================================================================== --- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/util/graph/RegionData.java 2010-07-21 00:00:27 UTC (rev 3186) +++ trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/util/graph/RegionData.java 2010-07-21 21:34:29 UTC (rev 3187) @@ -66,6 +66,12 @@ return highlightedValue; } /** + * sets the highlighted value index, or removes highlight if -1 is used + */ + public void setHighlightedValue(int highlightedValue) { + this.highlightedValue = highlightedValue; + } + /** * @return the raw array of values for this region */ public int[] getValues() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |