1 28 package net.sf.jasperreports.charts.fill; 29 30 import java.awt.Color ; 31 32 import net.sf.jasperreports.charts.JRLinePlot; 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 42 public class JRFillLinePlot extends JRFillChartPlot implements JRLinePlot { 43 44 47 public JRFillLinePlot( JRLinePlot plot, JRFillObjectFactory factory ){ 48 super( plot, factory ); 49 } 50 51 54 public JRExpression getCategoryAxisLabelExpression() 55 { 56 return ((JRLinePlot)parent).getCategoryAxisLabelExpression(); 57 } 58 59 62 public JRFont getCategoryAxisLabelFont() 63 { 64 return ((JRLinePlot)parent).getCategoryAxisLabelFont(); 65 } 66 67 70 public void setCategoryAxisLabelFont(JRFont font) 71 { 72 } 73 74 77 public Color getCategoryAxisLabelColor() 78 { 79 return ((JRLinePlot)parent).getCategoryAxisLabelColor(); 80 } 81 82 85 public void setCategoryAxisLabelColor(Color color) 86 { 87 } 88 89 92 public JRFont getCategoryAxisTickLabelFont() 93 { 94 return ((JRLinePlot)parent).getCategoryAxisTickLabelFont(); 95 } 96 97 100 public void setCategoryAxisTickLabelFont(JRFont font) 101 { 102 } 103 104 107 public Color getCategoryAxisTickLabelColor() 108 { 109 return ((JRLinePlot)parent).getCategoryAxisTickLabelColor(); 110 } 111 112 115 public void setCategoryAxisTickLabelColor(Color color) 116 { 117 } 118 119 122 public String getCategoryAxisTickLabelMask() 123 { 124 return ((JRLinePlot)parent).getCategoryAxisTickLabelMask(); 125 } 126 127 130 public void setCategoryAxisTickLabelMask(String mask) 131 { 132 } 133 134 137 public Color getCategoryAxisLineColor() 138 { 139 return ((JRLinePlot)parent).getCategoryAxisLineColor(); 140 } 141 142 145 public void setCategoryAxisLineColor(Color color) 146 { 147 } 148 149 152 public JRExpression getValueAxisLabelExpression() 153 { 154 return ((JRLinePlot)parent).getValueAxisLabelExpression(); 155 } 156 157 160 public JRFont getValueAxisLabelFont() 161 { 162 return ((JRLinePlot)parent).getValueAxisLabelFont(); 163 } 164 165 168 public void setValueAxisLabelFont(JRFont font) 169 { 170 } 171 172 175 public Color getValueAxisLabelColor() 176 { 177 return ((JRLinePlot)parent).getValueAxisLabelColor(); 178 } 179 180 183 public void setValueAxisLabelColor(Color color) 184 { 185 } 186 187 190 public JRFont getValueAxisTickLabelFont() 191 { 192 return ((JRLinePlot)parent).getValueAxisTickLabelFont(); 193 } 194 195 198 public void setValueAxisTickLabelFont(JRFont font) 199 { 200 } 201 202 205 public Color getValueAxisTickLabelColor() 206 { 207 return ((JRLinePlot)parent).getValueAxisTickLabelColor(); 208 } 209 210 213 public void setValueAxisTickLabelColor(Color color) 214 { 215 } 216 217 220 public String getValueAxisTickLabelMask() 221 { 222 return ((JRLinePlot)parent).getValueAxisTickLabelMask(); 223 } 224 225 228 public void setValueAxisTickLabelMask(String mask) 229 { 230 } 231 232 235 public Color getValueAxisLineColor() 236 { 237 return ((JRLinePlot)parent).getValueAxisLineColor(); 238 } 239 240 243 public void setValueAxisLineColor(Color color) 244 { 245 } 246 247 250 public boolean isShowShapes(){ 251 return ((JRLinePlot)parent).isShowShapes(); 252 } 253 254 257 public void setShowShapes( boolean value ){ 258 } 259 260 263 public boolean isShowLines(){ 264 return ((JRLinePlot)parent).isShowLines(); 265 } 266 267 270 public void setShowLines( boolean value ){ 271 } 272 273 } 274 | Popular Tags |