1 28 package net.sf.jasperreports.engine; 29 30 31 37 public interface JRGraphicElement extends JRElement 38 { 39 40 41 44 public static final byte PEN_NONE = 0; 45 46 49 public static final byte PEN_1_POINT = 1; 50 51 54 public static final byte PEN_2_POINT = 2; 55 56 59 public static final byte PEN_4_POINT = 3; 60 61 64 public static final byte PEN_DOTTED = 4; 65 66 69 public static final byte PEN_THIN = 5; 70 71 72 76 public static final byte FILL_SOLID = 1; 77 78 79 83 public byte getPen(); 84 85 public Byte getOwnPen(); 86 87 91 public void setPen(byte pen); 92 93 public void setPen(Byte pen); 94 95 99 public byte getFill(); 100 101 public Byte getOwnFill(); 102 103 107 public void setFill(byte fill); 108 109 public void setFill(Byte fill); 110 111 112 } 113 | Popular Tags |