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,206 @@
package net.sf.jasperreports.engine.base;
import java.io.IOException;
import java.io.ObjectInputStream;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRExpressionCollector;
import net.sf.jasperreports.engine.JRGroup;
import net.sf.jasperreports.engine.JRHyperlink;
import net.sf.jasperreports.engine.JRHyperlinkHelper;
import net.sf.jasperreports.engine.JRHyperlinkParameter;
import net.sf.jasperreports.engine.JRTextElement;
import net.sf.jasperreports.engine.JRTextField;
import net.sf.jasperreports.engine.JRVisitor;
import net.sf.jasperreports.engine.util.JRStyleResolver;
public class JRBaseTextField extends JRBaseTextElement implements JRTextField {
private static final long serialVersionUID = 10200L;
public static final String PROPERTY_STRETCH_WITH_OVERFLOW = "stretchWithOverflow";
protected boolean isStretchWithOverflow = false;
protected byte evaluationTime = 1;
protected String pattern;
protected Boolean isBlankWhenNull = null;
protected byte hyperlinkType = 0;
protected String linkType;
protected byte hyperlinkTarget = 1;
private JRHyperlinkParameter[] hyperlinkParameters;
protected JRGroup evaluationGroup = null;
protected JRExpression expression = null;
protected JRExpression anchorNameExpression = null;
protected JRExpression hyperlinkReferenceExpression = null;
protected JRExpression hyperlinkAnchorExpression = null;
protected JRExpression hyperlinkPageExpression = null;
private JRExpression hyperlinkTooltipExpression;
protected int bookmarkLevel = 0;
protected JRBaseTextField(JRTextField textField, JRBaseObjectFactory factory) {
super((JRTextElement)textField, factory);
this.isStretchWithOverflow = textField.isStretchWithOverflow();
this.evaluationTime = textField.getEvaluationTime();
this.pattern = textField.getOwnPattern();
this.isBlankWhenNull = textField.isOwnBlankWhenNull();
this.linkType = textField.getLinkType();
this.hyperlinkTarget = textField.getHyperlinkTarget();
this.hyperlinkParameters = JRBaseHyperlink.copyHyperlinkParameters((JRHyperlink)textField, factory);
this.evaluationGroup = factory.getGroup(textField.getEvaluationGroup());
this.expression = factory.getExpression(textField.getExpression());
this.anchorNameExpression = factory.getExpression(textField.getAnchorNameExpression());
this.hyperlinkReferenceExpression = factory.getExpression(textField.getHyperlinkReferenceExpression());
this.hyperlinkAnchorExpression = factory.getExpression(textField.getHyperlinkAnchorExpression());
this.hyperlinkPageExpression = factory.getExpression(textField.getHyperlinkPageExpression());
this.hyperlinkTooltipExpression = factory.getExpression(textField.getHyperlinkTooltipExpression());
this.bookmarkLevel = textField.getBookmarkLevel();
}
public boolean isStretchWithOverflow() {
return this.isStretchWithOverflow;
}
public void setStretchWithOverflow(boolean isStretchWithOverflow) {
boolean old = this.isStretchWithOverflow;
this.isStretchWithOverflow = isStretchWithOverflow;
getEventSupport().firePropertyChange("stretchWithOverflow", old, this.isStretchWithOverflow);
}
public byte getEvaluationTime() {
return this.evaluationTime;
}
public String getPattern() {
return JRStyleResolver.getPattern(this);
}
public String getOwnPattern() {
return this.pattern;
}
public void setPattern(String pattern) {
Object old = this.pattern;
this.pattern = pattern;
getEventSupport().firePropertyChange("pattern", old, this.pattern);
}
public boolean isBlankWhenNull() {
return JRStyleResolver.isBlankWhenNull(this);
}
public Boolean isOwnBlankWhenNull() {
return this.isBlankWhenNull;
}
public void setBlankWhenNull(Boolean isBlank) {
Object old = this.isBlankWhenNull;
this.isBlankWhenNull = isBlank;
getEventSupport().firePropertyChange("blankWhenNull", old, this.isBlankWhenNull);
}
public void setBlankWhenNull(boolean isBlank) {
setBlankWhenNull(isBlank ? Boolean.TRUE : Boolean.FALSE);
}
public byte getHyperlinkType() {
return JRHyperlinkHelper.getHyperlinkType((JRHyperlink)this);
}
public byte getHyperlinkTarget() {
return this.hyperlinkTarget;
}
public JRGroup getEvaluationGroup() {
return this.evaluationGroup;
}
public JRExpression getExpression() {
return this.expression;
}
public JRExpression getAnchorNameExpression() {
return this.anchorNameExpression;
}
public JRExpression getHyperlinkReferenceExpression() {
return this.hyperlinkReferenceExpression;
}
public JRExpression getHyperlinkAnchorExpression() {
return this.hyperlinkAnchorExpression;
}
public JRExpression getHyperlinkPageExpression() {
return this.hyperlinkPageExpression;
}
public void collectExpressions(JRExpressionCollector collector) {
collector.collect(this);
}
public void visit(JRVisitor visitor) {
visitor.visitTextField(this);
}
public int getBookmarkLevel() {
return this.bookmarkLevel;
}
public String getLinkType() {
return this.linkType;
}
public JRHyperlinkParameter[] getHyperlinkParameters() {
return this.hyperlinkParameters;
}
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject();
normalizeLinkType();
}
protected void normalizeLinkType() {
if (this.linkType == null)
this.linkType = JRHyperlinkHelper.getLinkType(this.hyperlinkType);
this.hyperlinkType = 0;
}
public JRExpression getHyperlinkTooltipExpression() {
return this.hyperlinkTooltipExpression;
}
public Object clone() {
JRBaseTextField clone = (JRBaseTextField)super.clone();
if (this.hyperlinkParameters != null) {
clone.hyperlinkParameters = new JRHyperlinkParameter[this.hyperlinkParameters.length];
for (int i = 0; i < this.hyperlinkParameters.length; i++)
clone.hyperlinkParameters[i] = (JRHyperlinkParameter)this.hyperlinkParameters[i].clone();
}
if (this.expression != null)
clone.expression = (JRExpression)this.expression.clone();
if (this.anchorNameExpression != null)
clone.anchorNameExpression = (JRExpression)this.anchorNameExpression.clone();
if (this.hyperlinkReferenceExpression != null)
clone.hyperlinkReferenceExpression = (JRExpression)this.hyperlinkReferenceExpression.clone();
if (this.hyperlinkAnchorExpression != null)
clone.hyperlinkAnchorExpression = (JRExpression)this.hyperlinkAnchorExpression.clone();
if (this.hyperlinkPageExpression != null)
clone.hyperlinkPageExpression = (JRExpression)this.hyperlinkPageExpression.clone();
if (this.hyperlinkTooltipExpression != null)
clone.hyperlinkTooltipExpression = (JRExpression)this.hyperlinkTooltipExpression.clone();
return clone;
}
}