1 28 package net.sf.jasperreports.engine.fill; 29 30 import net.sf.jasperreports.engine.JRConstants; 31 import net.sf.jasperreports.engine.JRPrintGraphicElement; 32 33 34 38 public class JRTemplatePrintGraphicElement extends JRTemplatePrintElement implements JRPrintGraphicElement 39 { 40 41 42 45 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 46 47 48 51 protected JRTemplatePrintGraphicElement(JRTemplateGraphicElement graphicElement) 52 { 53 super(graphicElement); 54 } 55 56 59 public byte getPen() 60 { 61 return ((JRTemplateGraphicElement)this.template).getPen(); 62 } 63 64 67 public Byte getOwnPen() 68 { 69 return ((JRTemplateGraphicElement)this.template).getOwnPen(); 70 } 71 72 75 public void setPen(byte pen) 76 { 77 } 78 79 82 public void setPen(Byte pen) 83 { 84 } 85 86 89 public byte getFill() 90 { 91 return ((JRTemplateGraphicElement)this.template).getFill(); 92 } 93 94 97 public Byte getOwnFill() 98 { 99 return ((JRTemplateGraphicElement)this.template).getOwnFill(); 100 } 101 102 105 public void setFill(byte fill) 106 { 107 } 108 109 112 public void setFill(Byte fill) 113 { 114 } 115 116 117 } 118 | Popular Tags |