first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View 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);
}