Update of /cvsroot/jfreechart/jfreechart
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16856
Modified Files:
Tag: STABLE_1-0-0
ChangeLog
Log Message:
2006-09-27 David Gilbert <david.gilbert@...>
* source/org/jfree/chart/ChartFactory.java
(createPieChart): Updated for deprecated code,
* source/org/jfree/chart/PaintMap.java: New class,
* source/org/jfree/chart/StrokeMap.java: Likewise,
* source/org/jfree/chart/junit/PaintMapTests.java: Likewise,
* source/org/jfree/chart/junit/StrokeMapTests.java: Likewise,
* source/org/jfree/chart/plot/MultiplePiePlot.java
(draw): Updated for deprecated code,
* source/org/jfree/chart/plot/PiePlot.java
(sectionPaintMap): Changed name and type from PaintList to PaintMap,
(sectionOutlinePaintMap): Likewise,
(sectionOutlineStrokeMap): Likewise,
(explodePercentages): Changed type from ObjectList to Map,
(PiePlot(PieDataset)): Update initialisation for field name changes,
(lookupSectionPaint): Changed argument type,
(getSectionKey): New method,
(getSectionPaint(Comparable)): Likewise,
(setSectionPaint(Comparable, Paint)): Likewise,
(getSectionPaint(int)): Deprecated,
(setSectionPaint(int, Paint)): Likewise,
(lookupSectionOutlinePaint): Changed argument type,
(getSectionOutlinePaint(Comparable)): Likewise,
(setSectionOutlinePaint(Comparable, Paint)): Likewise,
(getSectionOutlinePaint(int)): Deprecated,
(setSectionOutlinePaint(int, Paint)): Likewise,
(lookupSectionOutlineStroke): Changed argument type,
(getSectionOutlineStroke(Comparable)): Likewise,
(setSectionOutlineStroke(Comparable, Stroke)): Likewise,
(getSectionOutlineStroke(int)): Deprecated,
(setSectionOutlineStroke(int, Stroke)): Likewise,
(getExplodePercent(Comparable)): New method,
(setExplodePercent(Comparable, double)): Likewise,
(getExplodePercent(int)): Deprecated,
(setExplodePercent(int, double)): Deprecated,
(getMaximumExplodePercent): Modified to only check visible sections,
(drawItem): Updated for deprecated code,
(getLegendItems): Likewise,
(equals): Updated for renamed fields,
* source/org/jfree/chart/plot/PiePlot3D.java
(draw): Updated for deprecated code,
* source/org/jfree/chart/plot/RingPlot.java
(drawItem): Likewise.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/jfreechart/jfreechart/ChangeLog,v
retrieving revision 1.1.2.190
retrieving revision 1.1.2.191
diff -C2 -d -r1.1.2.190 -r1.1.2.191
*** ChangeLog 27 Sep 2006 13:45:48 -0000 1.1.2.190
--- ChangeLog 27 Sep 2006 17:06:58 -0000 1.1.2.191
***************
*** 1,4 ****
--- 1,49 ----
2006-09-27 David Gilbert <david.gilbert@...>
+ * source/org/jfree/chart/ChartFactory.java
+ (createPieChart): Updated for deprecated code,
+ * source/org/jfree/chart/PaintMap.java: New class,
+ * source/org/jfree/chart/StrokeMap.java: Likewise,
+ * source/org/jfree/chart/junit/PaintMapTests.java: Likewise,
+ * source/org/jfree/chart/junit/StrokeMapTests.java: Likewise,
+ * source/org/jfree/chart/plot/MultiplePiePlot.java
+ (draw): Updated for deprecated code,
+ * source/org/jfree/chart/plot/PiePlot.java
+ (sectionPaintMap): Changed name and type from PaintList to PaintMap,
+ (sectionOutlinePaintMap): Likewise,
+ (sectionOutlineStrokeMap): Likewise,
+ (explodePercentages): Changed type from ObjectList to Map,
+ (PiePlot(PieDataset)): Update initialisation for field name changes,
+ (lookupSectionPaint): Changed argument type,
+ (getSectionKey): New method,
+ (getSectionPaint(Comparable)): Likewise,
+ (setSectionPaint(Comparable, Paint)): Likewise,
+ (getSectionPaint(int)): Deprecated,
+ (setSectionPaint(int, Paint)): Likewise,
+ (lookupSectionOutlinePaint): Changed argument type,
+ (getSectionOutlinePaint(Comparable)): Likewise,
+ (setSectionOutlinePaint(Comparable, Paint)): Likewise,
+ (getSectionOutlinePaint(int)): Deprecated,
+ (setSectionOutlinePaint(int, Paint)): Likewise,
+ (lookupSectionOutlineStroke): Changed argument type,
+ (getSectionOutlineStroke(Comparable)): Likewise,
+ (setSectionOutlineStroke(Comparable, Stroke)): Likewise,
+ (getSectionOutlineStroke(int)): Deprecated,
+ (setSectionOutlineStroke(int, Stroke)): Likewise,
+ (getExplodePercent(Comparable)): New method,
+ (setExplodePercent(Comparable, double)): Likewise,
+ (getExplodePercent(int)): Deprecated,
+ (setExplodePercent(int, double)): Deprecated,
+ (getMaximumExplodePercent): Modified to only check visible sections,
+ (drawItem): Updated for deprecated code,
+ (getLegendItems): Likewise,
+ (equals): Updated for renamed fields,
+ * source/org/jfree/chart/plot/PiePlot3D.java
+ (draw): Updated for deprecated code,
+ * source/org/jfree/chart/plot/RingPlot.java
+ (drawItem): Likewise.
+
+ 2006-09-27 David Gilbert <david.gilbert@...>
+
* source/org/jfree/chart/plot/PiePlot.java
(PiePlot(PieDataset)): Initialise baseSectionPaint to a non-null value,
|