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,37 @@
package net.sf.jasperreports.crosstabs;
import java.awt.Color;
import net.sf.jasperreports.engine.JRBox;
import net.sf.jasperreports.engine.JRBoxContainer;
import net.sf.jasperreports.engine.JRElementGroup;
import net.sf.jasperreports.engine.JRStyleContainer;
public interface JRCellContents extends JRElementGroup, JRStyleContainer, JRBoxContainer {
public static final byte POSITION_X_LEFT = 1;
public static final byte POSITION_X_CENTER = 2;
public static final byte POSITION_X_RIGHT = 3;
public static final byte POSITION_X_STRETCH = 4;
public static final byte POSITION_Y_TOP = 1;
public static final byte POSITION_Y_MIDDLE = 2;
public static final byte POSITION_Y_BOTTOM = 3;
public static final byte POSITION_Y_STRETCH = 4;
public static final int NOT_CALCULATED = -2147483648;
Color getBackcolor();
JRBox getBox();
int getWidth();
int getHeight();
Byte getMode();
}