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,101 @@
package net.sf.jasperreports.charts.base;
import java.awt.Color;
import net.sf.jasperreports.charts.JRDataRange;
import net.sf.jasperreports.charts.JRThermometerPlot;
import net.sf.jasperreports.charts.JRValueDisplay;
import net.sf.jasperreports.engine.JRChart;
import net.sf.jasperreports.engine.JRChartPlot;
import net.sf.jasperreports.engine.JRExpressionCollector;
import net.sf.jasperreports.engine.base.JRBaseChartPlot;
import net.sf.jasperreports.engine.base.JRBaseObjectFactory;
public class JRBaseThermometerPlot extends JRBaseChartPlot implements JRThermometerPlot {
private static final long serialVersionUID = 10200L;
protected JRDataRange dataRange = null;
protected JRValueDisplay valueDisplay = null;
protected boolean showValueLines = false;
protected byte valueLocation = 3;
protected Color mercuryColor = null;
protected JRDataRange lowRange = null;
protected JRDataRange mediumRange = null;
protected JRDataRange highRange = null;
public JRBaseThermometerPlot(JRChartPlot thermoPlot, JRChart chart) {
super(thermoPlot, chart);
}
public JRBaseThermometerPlot(JRThermometerPlot thermoPlot, JRBaseObjectFactory factory) {
super((JRChartPlot)thermoPlot, factory);
this.dataRange = new JRBaseDataRange(thermoPlot.getDataRange(), factory);
this.valueDisplay = new JRBaseValueDisplay(thermoPlot.getValueDisplay(), factory);
this.showValueLines = thermoPlot.isShowValueLines();
this.valueLocation = thermoPlot.getValueLocation();
this.mercuryColor = thermoPlot.getMercuryColor();
if (thermoPlot.getLowRange() != null)
this.lowRange = new JRBaseDataRange(thermoPlot.getLowRange(), factory);
if (thermoPlot.getMediumRange() != null)
this.mediumRange = new JRBaseDataRange(thermoPlot.getMediumRange(), factory);
if (thermoPlot.getHighRange() != null)
this.highRange = new JRBaseDataRange(thermoPlot.getHighRange(), factory);
}
public JRDataRange getDataRange() {
return this.dataRange;
}
public JRValueDisplay getValueDisplay() {
return this.valueDisplay;
}
public boolean isShowValueLines() {
return this.showValueLines;
}
public byte getValueLocation() {
return this.valueLocation;
}
public Color getMercuryColor() {
return this.mercuryColor;
}
public JRDataRange getLowRange() {
return this.lowRange;
}
public JRDataRange getMediumRange() {
return this.mediumRange;
}
public JRDataRange getHighRange() {
return this.highRange;
}
public void collectExpressions(JRExpressionCollector collector) {
collector.collect(this);
}
public Object clone(JRChart parentChart) {
JRBaseThermometerPlot clone = (JRBaseThermometerPlot)super.clone(parentChart);
if (this.dataRange != null)
clone.dataRange = (JRDataRange)this.dataRange.clone();
if (this.valueDisplay != null)
clone.valueDisplay = (JRValueDisplay)this.valueDisplay.clone();
if (this.lowRange != null)
clone.lowRange = (JRDataRange)this.lowRange.clone();
if (this.mediumRange != null)
clone.mediumRange = (JRDataRange)this.mediumRange.clone();
if (this.highRange != null)
clone.highRange = (JRDataRange)this.highRange.clone();
return clone;
}
}