1 28 package net.sf.jasperreports.engine.fill; 29 30 import java.awt.Color ; 31 import java.util.SortedSet ; 32 33 import net.sf.jasperreports.engine.JRChartPlot; 34 import net.sf.jasperreports.engine.JRExpressionCollector; 35 36 import org.jfree.chart.plot.PlotOrientation; 37 38 39 43 public class JRFillChartPlot implements JRChartPlot 44 { 45 46 47 50 protected JRChartPlot parent = null; 51 52 53 56 protected JRFillChartPlot( 57 JRChartPlot plot, 58 JRFillObjectFactory factory 59 ) 60 { 61 factory.put(plot, this); 62 63 parent = plot; 64 } 65 66 67 70 public Color getBackcolor() 71 { 72 return parent.getBackcolor(); 73 } 74 75 78 public void setBackcolor(Color backcolor) 79 { 80 } 81 82 85 public PlotOrientation getOrientation() 86 { 87 return parent.getOrientation(); 88 } 89 90 93 public void setOrientation(PlotOrientation orientation) 94 { 95 } 96 97 100 public float getBackgroundAlpha() 101 { 102 return parent.getBackgroundAlpha(); 103 } 104 105 108 public void setBackgroundAlpha(float BackgroundAlpha) 109 { 110 } 111 112 115 public float getForegroundAlpha() 116 { 117 return parent.getForegroundAlpha(); 118 } 119 120 123 public void setForegroundAlpha(float foregroundAlpha) 124 { 125 } 126 127 130 public double getLabelRotation() 131 { 132 return parent.getLabelRotation(); 133 } 134 135 138 public void setLabelRotation(double labelRotation) 139 { 140 } 141 142 146 public SortedSet getSeriesColors() 147 { 148 return parent.getSeriesColors(); 149 } 150 151 154 public void clearSeriesColors() 155 { 156 } 157 158 161 public void addSeriesColor(JRSeriesColor seriesColor) 162 { 163 } 164 165 168 public void collectExpressions(JRExpressionCollector collector) 169 { 170 } 171 172 } 173 | Popular Tags |