first commit
This commit is contained in:
29
hrmsEjb/net/sf/jasperreports/engine/JRGraphicElement.java
Normal file
29
hrmsEjb/net/sf/jasperreports/engine/JRGraphicElement.java
Normal file
@@ -0,0 +1,29 @@
|
||||
package net.sf.jasperreports.engine;
|
||||
|
||||
public interface JRGraphicElement extends JRElement, JRCommonGraphicElement {
|
||||
public static final byte PEN_NONE = 0;
|
||||
|
||||
public static final byte PEN_1_POINT = 1;
|
||||
|
||||
public static final byte PEN_2_POINT = 2;
|
||||
|
||||
public static final byte PEN_4_POINT = 3;
|
||||
|
||||
public static final byte PEN_DOTTED = 4;
|
||||
|
||||
public static final byte PEN_THIN = 5;
|
||||
|
||||
public static final byte FILL_SOLID = 1;
|
||||
|
||||
byte getPen();
|
||||
|
||||
Byte getOwnPen();
|
||||
|
||||
void setPen(byte paramByte);
|
||||
|
||||
void setPen(Byte paramByte);
|
||||
|
||||
void setFill(byte paramByte);
|
||||
|
||||
void setFill(Byte paramByte);
|
||||
}
|
Reference in New Issue
Block a user