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,33 @@
package net.sf.jasperreports.crosstabs;
import net.sf.jasperreports.engine.JRCloneable;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRVariable;
public interface JRCrosstabMeasure extends JRCloneable {
public static final byte PERCENTAGE_TYPE_NONE = 0;
public static final byte PERCENTAGE_TYPE_GRAND_TOTAL = 1;
String getName();
String getValueClassName();
Class getValueClass();
JRExpression getValueExpression();
byte getCalculation();
String getIncrementerFactoryClassName();
Class getIncrementerFactoryClass();
byte getPercentageOfType();
String getPercentageCalculatorClassName();
Class getPercentageCalculatorClass();
JRVariable getVariable();
}