30 lines
617 B
Java
30 lines
617 B
Java
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);
|
|
}
|