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,46 @@
package net.sf.jasperreports.crosstabs.fill;
import net.sf.jasperreports.crosstabs.JRCellContents;
import net.sf.jasperreports.crosstabs.JRCrosstabCell;
import net.sf.jasperreports.engine.fill.JRFillCellContents;
import net.sf.jasperreports.engine.fill.JRFillObjectFactory;
public class JRFillCrosstabCell implements JRCrosstabCell {
private JRCrosstabCell parentCell;
protected JRFillCellContents contents;
public JRFillCrosstabCell(JRCrosstabCell cell, JRFillObjectFactory factory) {
factory.put(cell, this);
this.parentCell = cell;
this.contents = factory.getCell(cell.getContents());
}
public String getRowTotalGroup() {
return this.parentCell.getRowTotalGroup();
}
public String getColumnTotalGroup() {
return this.parentCell.getColumnTotalGroup();
}
public JRCellContents getContents() {
return (JRCellContents)this.contents;
}
public JRFillCellContents getFillContents() {
return this.contents;
}
public Integer getWidth() {
return this.parentCell.getWidth();
}
public Integer getHeight() {
return this.parentCell.getHeight();
}
public Object clone() {
return null;
}
}