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,25 @@
package net.sf.jasperreports.engine;
import net.sf.jasperreports.engine.design.JRVerifier;
public interface JRChartDataset extends JRElementDataset {
public static final byte PIE_DATASET = 1;
public static final byte CATEGORY_DATASET = 2;
public static final byte XY_DATASET = 3;
public static final byte XYZ_DATASET = 4;
public static final byte TIMEPERIOD_DATASET = 5;
public static final byte TIMESERIES_DATASET = 6;
public static final byte HIGHLOW_DATASET = 7;
public static final byte VALUE_DATASET = 8;
byte getDatasetType();
void validate(JRVerifier paramJRVerifier);
}