1 28 package net.sf.jasperreports.engine.fill; 29 30 import net.sf.jasperreports.engine.JRConstants; 31 import net.sf.jasperreports.engine.JRPrintRectangle; 32 33 34 38 public class JRTemplatePrintRectangle extends JRTemplatePrintGraphicElement implements JRPrintRectangle 39 { 40 41 44 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 45 46 49 public JRTemplatePrintRectangle(JRTemplateRectangle rectangle) 50 { 51 super(rectangle); 52 } 53 54 55 58 public int getRadius() 59 { 60 return ((JRTemplateRectangle)this.template).getRadius(); 61 } 62 63 66 public Integer getOwnRadius() 67 { 68 return ((JRTemplateRectangle)this.template).getOwnRadius(); 69 } 70 71 74 public void setRadius(int radius) 75 { 76 } 77 78 81 public void setRadius(Integer radius) 82 { 83 } 84 85 86 } 87 | Popular Tags |