JRBaseImage.java
| Index Score | ||
|---|---|---|
![]() |
![]() |
net.sf.jasperreports.engine.base |
![]() |
![]() |
JasperReports |
View: Reasons, Metrics, Source Code
These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.
/*
* ============================================================================
* GNU Lesser General Public License
* ============================================================================
*
* JasperReports - Free Java report-generating library.
* Copyright (C) 2001-2006 JasperSoft Corporation http://www.jaspersoft.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* JasperSoft Corporation
* 303 Second Street, Suite 450 North
* San Francisco, CA 94107
* http://www.jaspersoft.com
*/
package net.sf.jasperreports.engine.base;
import java.awt.Color;
import java.io.IOException;
import java.io.ObjectInputStream;
import net.sf.jasperreports.engine.JRAnchor;
import net.sf.jasperreports.engine.JRBox;
import net.sf.jasperreports.engine.JRConstants;
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.JRImage;
import net.sf.jasperreports.engine.JRLineBox;
import net.sf.jasperreports.engine.JRPen;
import net.sf.jasperreports.engine.JRVisitor;
import net.sf.jasperreports.engine.util.JRBoxUtil;
import net.sf.jasperreports.engine.util.JRPenUtil;
import net.sf.jasperreports.engine.util.JRStyleResolver;
import net.sf.jasperreports.engine.util.LineBoxWrapper;
/**
* The actual implementation of a graphic element representing an image.
* @author Teodor Danciu (teodord@users.sourceforge.net)
* @version $Id: JRBaseImage.java 2248 2008-08-01 10:16:00Z teodord $
*/
public class JRBaseImage extends JRBaseGraphicElement implements JRImage
{
/**
*
*/
private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;
/*
* Image properties
*/
public static final String PROPERTY_LAZY = "lazy";
public static final String PROPERTY_ON_ERROR_TYPE = "onErrorType";
public static final String PROPERTY_USING_CACHE = "usingCache";
/**
*
*/
protected Byte scaleImage;
protected Byte horizontalAlignment;
protected Byte verticalAlignment;
protected Boolean isUsingCache = null;
protected boolean isLazy = false;
protected byte onErrorType = ON_ERROR_TYPE_ERROR;
protected byte evaluationTime = JRExpression.EVALUATION_TIME_NOW;
protected byte hyperlinkType = JRHyperlink.HYPERLINK_TYPE_NULL;
protected String linkType;
protected byte hyperlinkTarget = JRHyperlink.HYPERLINK_TARGET_SELF;
private JRHyperlinkParameter[] hyperlinkParameters;
/**
*
*/
protected JRLineBox lineBox = null;
/**
*
*/
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;
/**
* The bookmark level for the anchor associated with this image.
* @see JRAnchor#getBookmarkLevel()
*/
protected int bookmarkLevel = JRAnchor.NO_BOOKMARK;
/**
*
*
protected JRBaseImage()
{
super();
}
/**
* Initializes properties that are specific to images. Common properties are initialized by its
* parent constructors.
* @param image an element whose properties are copied to this element. Usually it is a
* {@link net.sf.jasperreports.engine.design.JRDesignImage} that must be transformed into an
* <tt>JRBaseImage</tt> at compile time.
* @param factory a factory used in the compile process
*/
protected JRBaseImage(JRImage image, JRBaseObjectFactory factory)
{
super(image, factory);
scaleImage = image.getOwnScaleImage();
horizontalAlignment = image.getOwnHorizontalAlignment();
verticalAlignment = image.getOwnVerticalAlignment();
isUsingCache = image.isOwnUsingCache();
isLazy = image.isLazy();
onErrorType = image.getOnErrorType();
evaluationTime = image.getEvaluationTime();
linkType = image.getLinkType();
hyperlinkTarget = image.getHyperlinkTarget();
hyperlinkParameters = JRBaseHyperlink.copyHyperlinkParameters(image, factory);
lineBox = image.getLineBox().clone(this);
evaluationGroup = factory.getGroup(image.getEvaluationGroup());
expression = factory.getExpression(image.getExpression());
anchorNameExpression = factory.getExpression(image.getAnchorNameExpression());
hyperlinkReferenceExpression = factory.getExpression(image.getHyperlinkReferenceExpression());
hyperlinkAnchorExpression = factory.getExpression(image.getHyperlinkAnchorExpression());
hyperlinkPageExpression = factory.getExpression(image.getHyperlinkPageExpression());
hyperlinkTooltipExpression = factory.getExpression(image.getHyperlinkTooltipExpression());
bookmarkLevel = image.getBookmarkLevel();
}
/**
*
*/
public byte getMode()
{
return JRStyleResolver.getMode(this, MODE_TRANSPARENT);
}
/**
*
*/
public byte getScaleImage()
{
return JRStyleResolver.getScaleImage(this);
}
public Byte getOwnScaleImage()
{
return scaleImage;
}
/**
*
*/
public void setScaleImage(byte scaleImage)
{
setScaleImage(new Byte(scaleImage));
}
/**
*
*/
public void setScaleImage(Byte scaleImage)
{
Object old = this.scaleImage;
this.scaleImage = scaleImage;
getEventSupport().firePropertyChange(JRBaseStyle.PROPERTY_SCALE_IMAGE, old, this.scaleImage);
}
/**
*
*/
public byte getHorizontalAlignment()
{
return JRStyleResolver.getHorizontalAlignment(this);
}
public Byte getOwnHorizontalAlignment()
{
return horizontalAlignment;
}
/**
*
*/
public void setHorizontalAlignment(byte horizontalAlignment)
{
setHorizontalAlignment(new Byte(horizontalAlignment));
}
/**
*
*/
public void setHorizontalAlignment(Byte horizontalAlignment)
{
Object old = this.horizontalAlignment;
this.horizontalAlignment = horizontalAlignment;
getEventSupport().firePropertyChange(JRBaseStyle.PROPERTY_HORIZONTAL_ALIGNMENT, old, this.horizontalAlignment);
}
/**
*
*/
public byte getVerticalAlignment()
{
return JRStyleResolver.getVerticalAlignment(this);
}
public Byte getOwnVerticalAlignment()
{
return verticalAlignment;
}
/**
*
*/
public void setVerticalAlignment(byte verticalAlignment)
{
setVerticalAlignment(new Byte(verticalAlignment));
}
/**
*
*/
public void setVerticalAlignment(Byte verticalAlignment)
{
Object old = this.verticalAlignment;
this.verticalAlignment = verticalAlignment;
getEventSupport().firePropertyChange(JRBaseStyle.PROPERTY_VERTICAL_ALIGNMENT, old, this.verticalAlignment);
}
/**
*
*/
public boolean isUsingCache()
{
if (isUsingCache == null)
{
if (getExpression() != null)
{
return String.class.getName().equals(getExpression().getValueClassName());
}
return true;
}
return isUsingCache.booleanValue();
}
/**
*
*/
public Boolean isOwnUsingCache()
{
return isUsingCache;
}
/**
*
*/
public void setUsingCache(boolean isUsingCache)
{
setUsingCache(isUsingCache ? Boolean.TRUE : Boolean.FALSE);
}
/**
*
*/
public void setUsingCache(Boolean isUsingCache)
{
Object old = this.isUsingCache;
this.isUsingCache = isUsingCache;
getEventSupport().firePropertyChange(PROPERTY_USING_CACHE, old, this.isUsingCache);
}
/**
*
*/
public boolean isLazy()
{
return isLazy;
}
/**
*
*/
public void setLazy(boolean isLazy)
{
boolean old = this.isLazy;
this.isLazy = isLazy;
getEventSupport().firePropertyChange(PROPERTY_LAZY, old, this.isLazy);
}
/**
*
*/
public byte getOnErrorType()
{
return onErrorType;
}
/**
*
*/
public void setOnErrorType(byte onErrorType)
{
byte old = this.onErrorType;
this.onErrorType = onErrorType;
getEventSupport().firePropertyChange(PROPERTY_ON_ERROR_TYPE, old, this.onErrorType);
}
/**
*
*/
public byte getEvaluationTime()
{
return evaluationTime;
}
/**
* @deprecated Replaced by {@link #getLineBox()}
*/
public JRBox getBox()
{
return new LineBoxWrapper(getLineBox());
}
/**
*
*/
public JRLineBox getLineBox()
{
return lineBox;
}
/**
*
*/
public byte getHyperlinkType()
{
return JRHyperlinkHelper.getHyperlinkType(this);
}
/**
*
*/
public byte getHyperlinkTarget()
{
return hyperlinkTarget;
}
/**
*
*/
public JRGroup getEvaluationGroup()
{
return evaluationGroup;
}
/**
*
*/
public JRExpression getExpression()
{
return expression;
}
/**
*
*/
public JRExpression getAnchorNameExpression()
{
return anchorNameExpression;
}
/**
*
*/
public JRExpression getHyperlinkReferenceExpression()
{
return hyperlinkReferenceExpression;
}
/**
*
*/
public JRExpression getHyperlinkAnchorExpression()
{
return hyperlinkAnchorExpression;
}
/**
*
*/
public JRExpression getHyperlinkPageExpression()
{
return hyperlinkPageExpression;
}
/**
*
*/
public void collectExpressions(JRExpressionCollector collector)
{
collector.collect(this);
}
/**
*
*/
public void visit(JRVisitor visitor)
{
visitor.visitImage(this);
}
public int getBookmarkLevel()
{
return bookmarkLevel;
}
/**
*
*/
public Float getDefaultLineWidth()
{
return JRPen.LINE_WIDTH_0;
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public byte getBorder()
{
return JRPenUtil.getPenFromLinePen(lineBox.getPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Byte getOwnBorder()
{
return JRPenUtil.getOwnPenFromLinePen(lineBox.getPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBorder(byte border)
{
JRPenUtil.setLinePenFromPen(border, lineBox.getPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBorder(Byte border)
{
JRPenUtil.setLinePenFromPen(border, lineBox.getPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getBorderColor()
{
return lineBox.getPen().getLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getOwnBorderColor()
{
return lineBox.getPen().getOwnLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBorderColor(Color borderColor)
{
lineBox.getPen().setLineColor(borderColor);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public int getPadding()
{
return lineBox.getPadding().intValue();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Integer getOwnPadding()
{
return lineBox.getOwnPadding();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setPadding(int padding)
{
lineBox.setPadding(padding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setPadding(Integer padding)
{
lineBox.setPadding(padding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public byte getTopBorder()
{
return JRPenUtil.getPenFromLinePen(lineBox.getTopPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Byte getOwnTopBorder()
{
return JRPenUtil.getOwnPenFromLinePen(lineBox.getTopPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setTopBorder(byte topBorder)
{
JRPenUtil.setLinePenFromPen(topBorder, lineBox.getTopPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setTopBorder(Byte topBorder)
{
JRPenUtil.setLinePenFromPen(topBorder, lineBox.getTopPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getTopBorderColor()
{
return lineBox.getTopPen().getLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getOwnTopBorderColor()
{
return lineBox.getTopPen().getOwnLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setTopBorderColor(Color topBorderColor)
{
lineBox.getTopPen().setLineColor(topBorderColor);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public int getTopPadding()
{
return lineBox.getTopPadding().intValue();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Integer getOwnTopPadding()
{
return lineBox.getOwnTopPadding();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setTopPadding(int topPadding)
{
lineBox.setTopPadding(topPadding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setTopPadding(Integer topPadding)
{
lineBox.setTopPadding(topPadding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public byte getLeftBorder()
{
return JRPenUtil.getPenFromLinePen(lineBox.getLeftPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Byte getOwnLeftBorder()
{
return JRPenUtil.getOwnPenFromLinePen(lineBox.getLeftPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setLeftBorder(byte leftBorder)
{
JRPenUtil.setLinePenFromPen(leftBorder, lineBox.getLeftPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setLeftBorder(Byte leftBorder)
{
JRPenUtil.setLinePenFromPen(leftBorder, lineBox.getLeftPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getLeftBorderColor()
{
return lineBox.getLeftPen().getLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getOwnLeftBorderColor()
{
return lineBox.getLeftPen().getOwnLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setLeftBorderColor(Color leftBorderColor)
{
lineBox.getLeftPen().setLineColor(leftBorderColor);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public int getLeftPadding()
{
return lineBox.getLeftPadding().intValue();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Integer getOwnLeftPadding()
{
return lineBox.getOwnLeftPadding();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setLeftPadding(int leftPadding)
{
lineBox.setLeftPadding(leftPadding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setLeftPadding(Integer leftPadding)
{
lineBox.setLeftPadding(leftPadding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public byte getBottomBorder()
{
return JRPenUtil.getPenFromLinePen(lineBox.getBottomPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Byte getOwnBottomBorder()
{
return JRPenUtil.getOwnPenFromLinePen(lineBox.getBottomPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBottomBorder(byte bottomBorder)
{
JRPenUtil.setLinePenFromPen(bottomBorder, lineBox.getBottomPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBottomBorder(Byte bottomBorder)
{
JRPenUtil.setLinePenFromPen(bottomBorder, lineBox.getBottomPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getBottomBorderColor()
{
return lineBox.getBottomPen().getLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getOwnBottomBorderColor()
{
return lineBox.getBottomPen().getOwnLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBottomBorderColor(Color bottomBorderColor)
{
lineBox.getBottomPen().setLineColor(bottomBorderColor);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public int getBottomPadding()
{
return lineBox.getBottomPadding().intValue();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Integer getOwnBottomPadding()
{
return lineBox.getOwnBottomPadding();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBottomPadding(int bottomPadding)
{
lineBox.setBottomPadding(bottomPadding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setBottomPadding(Integer bottomPadding)
{
lineBox.setBottomPadding(bottomPadding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public byte getRightBorder()
{
return JRPenUtil.getPenFromLinePen(lineBox.getRightPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Byte getOwnRightBorder()
{
return JRPenUtil.getOwnPenFromLinePen(lineBox.getRightPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setRightBorder(byte rightBorder)
{
JRPenUtil.setLinePenFromPen(rightBorder, lineBox.getRightPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setRightBorder(Byte rightBorder)
{
JRPenUtil.setLinePenFromPen(rightBorder, lineBox.getRightPen());
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getRightBorderColor()
{
return lineBox.getRightPen().getLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Color getOwnRightBorderColor()
{
return lineBox.getRightPen().getOwnLineColor();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setRightBorderColor(Color rightBorderColor)
{
lineBox.getRightPen().setLineColor(rightBorderColor);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public int getRightPadding()
{
return lineBox.getRightPadding().intValue();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public Integer getOwnRightPadding()
{
return lineBox.getOwnRightPadding();
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setRightPadding(int rightPadding)
{
lineBox.setRightPadding(rightPadding);
}
/**
* @deprecated Replaced by {@link #getBox()}
*/
public void setRightPadding(Integer rightPadding)
{
lineBox.setRightPadding(rightPadding);
}
public String getLinkType()
{
return linkType;
}
public JRHyperlinkParameter[] getHyperlinkParameters()
{
return hyperlinkParameters;
}
protected void normalizeLinkType()
{
if (linkType == null)
{
linkType = JRHyperlinkHelper.getLinkType(hyperlinkType);
}
hyperlinkType = JRHyperlink.HYPERLINK_TYPE_NULL;
}
public JRExpression getHyperlinkTooltipExpression()
{
return hyperlinkTooltipExpression;
}
/**
*
*/
public Object clone()
{
JRBaseImage clone = (JRBaseImage)super.clone();
clone.lineBox = (JRLineBox)lineBox.clone(this);
if (hyperlinkParameters != null)
{
clone.hyperlinkParameters = new JRHyperlinkParameter[hyperlinkParameters.length];
for(int i = 0; i < hyperlinkParameters.length; i++)
{
clone.hyperlinkParameters[i] = (JRHyperlinkParameter)hyperlinkParameters[i].clone();
}
}
if (expression != null)
{
clone.expression = (JRExpression)expression.clone();
}
if (anchorNameExpression != null)
{
clone.anchorNameExpression = (JRExpression)anchorNameExpression.clone();
}
if (hyperlinkReferenceExpression != null)
{
clone.hyperlinkReferenceExpression = (JRExpression)hyperlinkReferenceExpression.clone();
}
if (hyperlinkAnchorExpression != null)
{
clone.hyperlinkAnchorExpression = (JRExpression)hyperlinkAnchorExpression.clone();
}
if (hyperlinkPageExpression != null)
{
clone.hyperlinkPageExpression = (JRExpression)hyperlinkPageExpression.clone();
}
if (hyperlinkTooltipExpression != null)
{
clone.hyperlinkTooltipExpression = (JRExpression)hyperlinkTooltipExpression.clone();
}
return clone;
}
/**
* These fields are only for serialization backward compatibility.
*/
private Byte border = null;
private Byte topBorder = null;
private Byte leftBorder = null;
private Byte bottomBorder = null;
private Byte rightBorder = null;
private Color borderColor = null;
private Color topBorderColor = null;
private Color leftBorderColor = null;
private Color bottomBorderColor = null;
private Color rightBorderColor = null;
private Integer padding = null;
private Integer topPadding = null;
private Integer leftPadding = null;
private Integer bottomPadding = null;
private Integer rightPadding = null;
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
{
in.defaultReadObject();
if (lineBox == null)
{
lineBox = new JRBaseLineBox(this);
JRBoxUtil.setToBox(
border,
topBorder,
leftBorder,
bottomBorder,
rightBorder,
borderColor,
topBorderColor,
leftBorderColor,
bottomBorderColor,
rightBorderColor,
padding,
topPadding,
leftPadding,
bottomPadding,
rightPadding,
lineBox
);
border = null;
topBorder = null;
leftBorder = null;
bottomBorder = null;
rightBorder = null;
borderColor = null;
topBorderColor = null;
leftBorderColor = null;
bottomBorderColor = null;
rightBorderColor = null;
padding = null;
topPadding = null;
leftPadding = null;
bottomPadding = null;
rightPadding = null;
}
normalizeLinkType();
}
}
The table below shows all metrics for JRBaseImage.java.




