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.base;
import java.io.Serializable;
import net.sf.jasperreports.crosstabs.JRCrosstabBucket;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.base.JRBaseObjectFactory;
public class JRBaseCrosstabBucket implements JRCrosstabBucket, Serializable {
private static final long serialVersionUID = 10200L;
protected byte order = 1;
protected JRExpression expression;
protected JRExpression comparatorExpression;
protected JRBaseCrosstabBucket() {}
public JRBaseCrosstabBucket(JRCrosstabBucket bucket, JRBaseObjectFactory factory) {
factory.put(bucket, this);
this.order = bucket.getOrder();
this.expression = factory.getExpression(bucket.getExpression());
this.comparatorExpression = factory.getExpression(bucket.getComparatorExpression());
}
public byte getOrder() {
return this.order;
}
public JRExpression getExpression() {
return this.expression;
}
public JRExpression getComparatorExpression() {
return this.comparatorExpression;
}
}