1 28 package net.sf.jasperreports.engine; 29 30 31 35 public interface JRPrintGraphicElement extends JRPrintElement 36 { 37 38 39 43 public byte getPen(); 44 45 public Byte getOwnPen(); 46 47 51 public void setPen(byte pen); 52 53 public void setPen(Byte pen); 54 55 59 public byte getFill(); 60 61 public Byte getOwnFill(); 62 63 67 public void setFill(byte fill); 68 69 public void setFill(Byte fill); 70 71 72 } 73 | Popular Tags |