1 28 package net.sf.jasperreports.charts.fill; 29 30 import java.awt.Color ; 31 32 import net.sf.jasperreports.charts.JRBarPlot; 33 import net.sf.jasperreports.engine.JRExpression; 34 import net.sf.jasperreports.engine.JRFont; 35 import net.sf.jasperreports.engine.fill.JRFillChartPlot; 36 import net.sf.jasperreports.engine.fill.JRFillObjectFactory; 37 38 39 43 public class JRFillBarPlot extends JRFillChartPlot implements JRBarPlot 44 { 45 46 47 50 public JRFillBarPlot( 51 JRBarPlot barPlot, 52 JRFillObjectFactory factory 53 ) 54 { 55 super(barPlot, factory); 56 } 57 58 59 62 public JRExpression getCategoryAxisLabelExpression() 63 { 64 return ((JRBarPlot)parent).getCategoryAxisLabelExpression(); 65 } 66 67 70 public JRFont getCategoryAxisLabelFont() 71 { 72 return ((JRBarPlot)parent).getCategoryAxisLabelFont(); 73 } 74 75 78 public void setCategoryAxisLabelFont(JRFont font) 79 { 80 } 81 82 85 public Color getCategoryAxisLabelColor() 86 { 87 return ((JRBarPlot)parent).getCategoryAxisLabelColor(); 88 } 89 90 93 public void setCategoryAxisLabelColor(Color color) 94 { 95 } 96 97 100 public JRFont getCategoryAxisTickLabelFont() 101 { 102 return ((JRBarPlot)parent).getCategoryAxisTickLabelFont(); 103 } 104 105 108 public void setCategoryAxisTickLabelFont(JRFont font) 109 { 110 } 111 112 115 public Color getCategoryAxisTickLabelColor() 116 { 117 return ((JRBarPlot)parent).getCategoryAxisTickLabelColor(); 118 } 119 120 123 public void setCategoryAxisTickLabelColor(Color color) 124 { 125 } 126 127 130 public String getCategoryAxisTickLabelMask() 131 { 132 return ((JRBarPlot)parent).getCategoryAxisTickLabelMask(); 133 } 134 135 138 public void setCategoryAxisTickLabelMask(String mask) 139 { 140 } 141 142 145 public Color getCategoryAxisLineColor() 146 { 147 return ((JRBarPlot)parent).getCategoryAxisLineColor(); 148 } 149 150 153 public void setCategoryAxisLineColor(Color color) 154 { 155 } 156 157 160 public JRExpression getValueAxisLabelExpression() 161 { 162 return ((JRBarPlot)parent).getValueAxisLabelExpression(); 163 } 164 165 168 public JRFont getValueAxisLabelFont() 169 { 170 return ((JRBarPlot)parent).getValueAxisLabelFont(); 171 } 172 173 176 public void setValueAxisLabelFont(JRFont font) 177 { 178 } 179 180 183 public Color getValueAxisLabelColor() 184 { 185 return ((JRBarPlot)parent).getValueAxisLabelColor(); 186 } 187 188 191 public void setValueAxisLabelColor(Color color) 192 { 193 } 194 195 198 public JRFont getValueAxisTickLabelFont() 199 { 200 return ((JRBarPlot)parent).getValueAxisTickLabelFont(); 201 } 202 203 206 public void setValueAxisTickLabelFont(JRFont font) 207 { 208 } 209 210 213 public Color getValueAxisTickLabelColor() 214 { 215 return ((JRBarPlot)parent).getValueAxisTickLabelColor(); 216 } 217 218 221 public void setValueAxisTickLabelColor(Color color) 222 { 223 } 224 225 228 public String getValueAxisTickLabelMask() 229 { 230 return ((JRBarPlot)parent).getValueAxisTickLabelMask(); 231 } 232 233 236 public void setValueAxisTickLabelMask(String mask) 237 { 238 } 239 240 243 public Color getValueAxisLineColor() 244 { 245 return ((JRBarPlot)parent).getValueAxisLineColor(); 246 } 247 248 251 public void setValueAxisLineColor(Color color) 252 { 253 } 254 255 258 public boolean isShowTickMarks() 259 { 260 return ((JRBarPlot)parent).isShowTickMarks(); 261 } 262 263 266 public void setShowTickMarks(boolean isShowTickMarks) 267 { 268 } 269 270 273 public boolean isShowTickLabels() 274 { 275 return ((JRBarPlot)parent).isShowTickLabels(); 276 } 277 278 281 public void setShowTickLabels(boolean isShowTickLabels) 282 { 283 } 284 285 288 public boolean isShowLabels(){ 289 return ((JRBarPlot)parent).isShowLabels(); 290 } 291 292 295 public void setShowLabels( boolean isShowLabels ){ 296 } 297 298 } 299 | Popular Tags |