first commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package net.sf.jasperreports.engine.fill;
|
||||
|
||||
import net.sf.jasperreports.engine.JRPrintRectangle;
|
||||
|
||||
public class JRTemplatePrintRectangle extends JRTemplatePrintGraphicElement implements JRPrintRectangle {
|
||||
private static final long serialVersionUID = 10200L;
|
||||
|
||||
public JRTemplatePrintRectangle(JRTemplateRectangle rectangle) {
|
||||
super(rectangle);
|
||||
}
|
||||
|
||||
public int getRadius() {
|
||||
return ((JRTemplateRectangle)this.template).getRadius();
|
||||
}
|
||||
|
||||
public Integer getOwnRadius() {
|
||||
return ((JRTemplateRectangle)this.template).getOwnRadius();
|
||||
}
|
||||
|
||||
public void setRadius(int radius) {}
|
||||
|
||||
public void setRadius(Integer radius) {}
|
||||
}
|
Reference in New Issue
Block a user