Package net.sf.jasperreports.engine.base

Source Code of net.sf.jasperreports.engine.base.JRBasePrintImage

/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2009 Jaspersoft Corporation. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports 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 3 of the License, or
* (at your option) any later version.
*
* JasperReports 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 JasperReports. If not, see <http://www.gnu.org/licenses/>.
*/
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.JRDefaultStyleProvider;
import net.sf.jasperreports.engine.JRHyperlinkHelper;
import net.sf.jasperreports.engine.JRLineBox;
import net.sf.jasperreports.engine.JRPen;
import net.sf.jasperreports.engine.JRPrintHyperlinkParameter;
import net.sf.jasperreports.engine.JRPrintHyperlinkParameters;
import net.sf.jasperreports.engine.JRPrintImage;
import net.sf.jasperreports.engine.JRRenderable;
import net.sf.jasperreports.engine.PrintElementVisitor;
import net.sf.jasperreports.engine.type.HorizontalAlignEnum;
import net.sf.jasperreports.engine.type.HyperlinkTargetEnum;
import net.sf.jasperreports.engine.type.HyperlinkTypeEnum;
import net.sf.jasperreports.engine.type.ModeEnum;
import net.sf.jasperreports.engine.type.OnErrorTypeEnum;
import net.sf.jasperreports.engine.type.ScaleImageEnum;
import net.sf.jasperreports.engine.type.VerticalAlignEnum;
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;


/**
* @author Teodor Danciu (teodord@users.sourceforge.net)
* @version $Id: JRBasePrintImage.java 3991 2010-10-12 20:10:55Z lucianc $
*/
public class JRBasePrintImage extends JRBasePrintGraphicElement implements JRPrintImage
{


  /**
   *
   */
  private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;

  /**
   *
   */
  protected JRRenderable renderer;
  protected ScaleImageEnum scaleImageValue;
  protected Boolean isUsingCache = Boolean.TRUE;
  protected HorizontalAlignEnum horizontalAlignmentValue;
  protected VerticalAlignEnum verticalAlignmentValue;
  protected boolean isLazy;
  protected OnErrorTypeEnum onErrorTypeValue = OnErrorTypeEnum.ERROR;
  protected JRLineBox lineBox;
  protected String anchorName;
  protected String linkType;
  protected String linkTarget;
  protected String hyperlinkReference;
  protected String hyperlinkAnchor;
  protected Integer hyperlinkPage;
  protected String hyperlinkTooltip;
  protected JRPrintHyperlinkParameters hyperlinkParameters;

  /**
   * The bookmark level for the anchor associated with this field.
   * @see JRAnchor#getBookmarkLevel()
   */
  protected int bookmarkLevel = JRAnchor.NO_BOOKMARK;

 
  /**
   *
   */
  public JRBasePrintImage(JRDefaultStyleProvider defaultStyleProvider)
  {
    super(defaultStyleProvider);

    lineBox = new JRBaseLineBox(this);
  }


  /**
   *
   */
  public ModeEnum getModeValue()
  {
    return JRStyleResolver.getMode(this, ModeEnum.TRANSPARENT);
  }
   
  /**
   *
   */
  public JRRenderable getRenderer()
  {
    return renderer;
  }
   
  /**
   *
   */
  public void setRenderer(JRRenderable renderer)
  {
    this.renderer = renderer;
  }
   
  /**
   * @deprecated Replaced by {@link #getScaleImageValue()}.
   */
  public byte getScaleImage()
  {
    return getScaleImageValue().getValue();
  }

  /**
   * @deprecated Replaced by {@link #getOwnScaleImageValue()}.
   */
  public Byte getOwnScaleImage()
  {
    return getOwnScaleImageValue() == null ? null : getOwnScaleImageValue().getValueByte();
  }

  /**
   * @deprecated Replaced by {@link #setScaleImage(ScaleImageEnum)}.
   */
  public void setScaleImage(byte scaleImage)
  {
    setScaleImage(ScaleImageEnum.getByValue(scaleImage));
  }

  /**
   * @deprecated Replaced by {@link #setScaleImage(ScaleImageEnum)}.
   */
  public void setScaleImage(Byte scaleImage)
  {
    setScaleImage(ScaleImageEnum.getByValue(scaleImage));
  }

  /**
   *
   */
  public ScaleImageEnum getScaleImageValue()
  {
    return JRStyleResolver.getScaleImageValue(this);
  }

  /**
   *
   */
  public ScaleImageEnum getOwnScaleImageValue()
  {
    return this.scaleImageValue;
  }

  /**
   *
   */
  public void setScaleImage(ScaleImageEnum scaleImageValue)
  {
    this.scaleImageValue = scaleImageValue;
  }

  /**
   *
   */
  public boolean isUsingCache()
  {
    return isUsingCache == null ? true : isUsingCache.booleanValue();
  }

  /**
   *
   */
  public void setUsingCache(boolean isUsingCache)
  {
    this.isUsingCache = (isUsingCache ? Boolean.TRUE : Boolean.FALSE);
  }

  /**
   * @deprecated Replaced by {@link #getHorizontalAlignmentValue()}.
   */
  public byte getHorizontalAlignment()
  {
    return getHorizontalAlignmentValue().getValue();
  }
   
  /**
   * @deprecated Replaced by {@link #getHorizontalAlignmentValue()}.
   */
  public Byte getOwnHorizontalAlignment()
  {
    return getOwnHorizontalAlignmentValue() == null ? null : getOwnHorizontalAlignmentValue().getValueByte();
  }
   
  /**
   *
   */
  public HorizontalAlignEnum getHorizontalAlignmentValue()
  {
    return JRStyleResolver.getHorizontalAlignmentValue(this);
  }
   
  /**
   *
   */
  public HorizontalAlignEnum getOwnHorizontalAlignmentValue()
  {
    return horizontalAlignmentValue;
  }
   
  /**
   * @deprecated Replaced by {@link #setHorizontalAlignment(HorizontalAlignEnum)}.
   */
  public void setHorizontalAlignment(byte horizontalAlignment)
  {
    setHorizontalAlignment(HorizontalAlignEnum.getByValue(horizontalAlignment));
  }

  /**
   * @deprecated Replaced by {@link #setHorizontalAlignment(HorizontalAlignEnum)}.
   */
  public void setHorizontalAlignment(Byte horizontalAlignment)
  {
    setHorizontalAlignment(HorizontalAlignEnum.getByValue(horizontalAlignment));
  }

  /**
   *
   */
  public void setHorizontalAlignment(HorizontalAlignEnum horizontalAlignmentValue)
  {
    this.horizontalAlignmentValue = horizontalAlignmentValue;
  }

  /**
   * @deprecated Replaced by {@link #getVerticalAlignmentValue()}.
   */
  public byte getVerticalAlignment()
  {
    return getVerticalAlignmentValue().getValue();
  }
   
  /**
   * @deprecated Replaced by {@link #getVerticalAlignmentValue()}.
   */
  public Byte getOwnVerticalAlignment()
  {
    return getOwnVerticalAlignmentValue() == null ? null : getOwnVerticalAlignmentValue().getValueByte();
  }
   
  /**
   *
   */
  public VerticalAlignEnum getVerticalAlignmentValue()
  {
    return JRStyleResolver.getVerticalAlignmentValue(this);
  }
   
  /**
   *
   */
  public VerticalAlignEnum getOwnVerticalAlignmentValue()
  {
    return verticalAlignmentValue;
  }
   
  /**
   * @deprecated Replaced by {@link #setVerticalAlignment(VerticalAlignEnum)}.
   */
  public void setVerticalAlignment(byte verticalAlignment)
  {
    setVerticalAlignment(VerticalAlignEnum.getByValue(verticalAlignment));
  }

  /**
   * @deprecated Replaced by {@link #setVerticalAlignment(VerticalAlignEnum)}.
   */
  public void setVerticalAlignment(Byte verticalAlignment)
  {
    setVerticalAlignment(VerticalAlignEnum.getByValue(verticalAlignment));
  }

  /**
   *
   */
  public void setVerticalAlignment(VerticalAlignEnum verticalAlignmentValue)
  {
    this.verticalAlignmentValue = verticalAlignmentValue;
  }

  /**
   *
   */
  public boolean isLazy()
  {
    return isLazy;
  }

  /**
   *
   */
  public void setLazy(boolean isLazy)
  {
    this.isLazy = isLazy;
  }

  /**
   * @deprecated Replaced by {@link #getOnErrorTypeValue()}
   */
  public byte getOnErrorType()
  {
    return getOnErrorTypeValue().getValue();
  }

  /**
   * @deprecated Replaced by {@link #setOnErrorType(OnErrorTypeEnum)}
   */
  public void setOnErrorType(byte onErrorType)
  {
    setOnErrorType(OnErrorTypeEnum.getByValue(onErrorType));
  }

  /**
   *
   */
  public OnErrorTypeEnum getOnErrorTypeValue()
  {
    return this.onErrorTypeValue;
  }

  /**
   *
   */
  public void setOnErrorType(OnErrorTypeEnum onErrorTypeValue)
  {
    this.onErrorTypeValue = onErrorTypeValue;
  }

  /**
   * @deprecated Replaced by {@link #getLineBox()}
   */
  public JRBox getBox()
  {
    return new LineBoxWrapper(getLineBox());
  }

  /**
   *
   */
  public JRLineBox getLineBox()
  {
    return lineBox;
  }

  /**
   * @deprecated Replaced by {@link #copyBox(JRLineBox)}
   */
  public void setBox(JRBox box)
  {
    JRBoxUtil.setBoxToLineBox(box, lineBox);
  }

  /**
   *
   */
  public void copyBox(JRLineBox lineBox)
  {
    this.lineBox = lineBox.clone(this);
  }

  /**
   *
   */
  public Float getDefaultLineWidth()
  {
    return JRPen.LINE_WIDTH_0;
  }

  /**
   *
   */
  public String getAnchorName()
  {
    return anchorName;
  }
   
  /**
   *
   */
  public void setAnchorName(String anchorName)
  {
    this.anchorName = anchorName;
  }
   
  /**
   * @deprecated Replaced by {@link #getHyperlinkTypeValue()}.
   */
  public byte getHyperlinkType()
  {
    return getHyperlinkTypeValue().getValue();
  }
   
  /**
   *
   */
  public HyperlinkTypeEnum getHyperlinkTypeValue()
  {
    return JRHyperlinkHelper.getHyperlinkTypeValue(getLinkType());
  }
   
  /**
   * @deprecated Replaced by {@link #setHyperlinkType(HyperlinkTypeEnum)}.
   */
  public void setHyperlinkType(byte hyperlinkType)
  {
    setHyperlinkType(HyperlinkTypeEnum.getByValue(hyperlinkType));
  }

  /**
   *
   */
  public void setHyperlinkType(HyperlinkTypeEnum hyperlinkType)
  {
    setLinkType(JRHyperlinkHelper.getLinkType(hyperlinkType));
  }

  /**
   * @deprecated Replaced by {@link #getHyperlinkTypeValue()}.
   */
  public byte getHyperlinkTarget()
  {
    return getHyperlinkTargetValue().getValue();
  }
   
  /**
   *
   */
  public HyperlinkTargetEnum getHyperlinkTargetValue()
  {
    return JRHyperlinkHelper.getHyperlinkTargetValue(getLinkTarget());
  }
   
  /**
   * @deprecated Replaced by {@link #setHyperlinkTarget(HyperlinkTargetEnum)}.
   */
  public void setHyperlinkTarget(byte hyperlinkTarget)
  {
    setHyperlinkTarget(HyperlinkTargetEnum.getByValue(hyperlinkTarget));
  }

  /**
   *
   */
  public void setHyperlinkTarget(HyperlinkTargetEnum hyperlinkTarget)
  {
    setLinkTarget(JRHyperlinkHelper.getLinkTarget(hyperlinkTarget));
  }

  /**
   *
   */
  public String getHyperlinkReference()
  {
    return hyperlinkReference;
  }
   
  /**
   *
   */
  public void setHyperlinkReference(String hyperlinkReference)
  {
    this.hyperlinkReference = hyperlinkReference;
  }
   
  /**
   *
   */
  public String getHyperlinkAnchor()
  {
    return hyperlinkAnchor;
  }
   
  /**
   *
   */
  public void setHyperlinkAnchor(String hyperlinkAnchor)
  {
    this.hyperlinkAnchor = hyperlinkAnchor;
  }
   
  /**
   *
   */
  public Integer getHyperlinkPage()
  {
    return hyperlinkPage;
  }
   
  /**
   *
   */
  public void setHyperlinkPage(Integer hyperlinkPage)
  {
    this.hyperlinkPage = hyperlinkPage;
  }
   
  /**
   *
   */
  public void setHyperlinkPage(String hyperlinkPage)
  {
    this.hyperlinkPage = Integer.valueOf(hyperlinkPage);
  }


  public int getBookmarkLevel()
  {
    return bookmarkLevel;
  }


  public void setBookmarkLevel(int bookmarkLevel)
  {
    this.bookmarkLevel = bookmarkLevel;
  }
 

  /**
   * @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 JRPrintHyperlinkParameters getHyperlinkParameters()
  {
    return hyperlinkParameters;
  }

 
  public void setHyperlinkParameters(JRPrintHyperlinkParameters hyperlinkParameters)
  {
    this.hyperlinkParameters = hyperlinkParameters;
  }

 
  /**
   * Adds a custom hyperlink parameter.
   *
   * @param parameter the parameter to add
   * @see #getHyperlinkParameters()
   * @see JRPrintHyperlinkParameters#addParameter(JRPrintHyperlinkParameter)
   */
  public void addHyperlinkParameter(JRPrintHyperlinkParameter parameter)
  {
    if (hyperlinkParameters == null)
    {
      hyperlinkParameters = new JRPrintHyperlinkParameters();
    }
    hyperlinkParameters.addParameter(parameter);
  }

 
  public String getLinkType()
  {
    return linkType;
  }

 
  public void setLinkType(String linkType)
  {
    this.linkType = linkType;
  }
 
  public String getLinkTarget()
  {
    return linkTarget;
  }

 
  public void setLinkTarget(String linkTarget)
  {
    this.linkTarget = linkTarget;
  }
 
 
  public String getHyperlinkTooltip()
  {
    return hyperlinkTooltip;
  }

 
  public void setHyperlinkTooltip(String hyperlinkTooltip)
  {
    this.hyperlinkTooltip = hyperlinkTooltip;
  }

 
  /*
   * These fields are only for serialization backward compatibility.
   */
  private int PSEUDO_SERIAL_VERSION_UID = JRConstants.PSEUDO_SERIAL_VERSION_UID; //NOPMD
  /**
   * @deprecated
   */
  private Byte horizontalAlignment;
  /**
   * @deprecated
   */
  private Byte verticalAlignment;
  /**
   * @deprecated
   */
  private Byte border;
  /**
   * @deprecated
   */
  private Byte topBorder;
  /**
   * @deprecated
   */
  private Byte leftBorder;
  /**
   * @deprecated
   */
  private Byte bottomBorder;
  /**
   * @deprecated
   */
  private Byte rightBorder;
  /**
   * @deprecated
   */
  private Color borderColor;
  /**
   * @deprecated
   */
  private Color topBorderColor;
  /**
   * @deprecated
   */
  private Color leftBorderColor;
  /**
   * @deprecated
   */
  private Color bottomBorderColor;
  /**
   * @deprecated
   */
  private Color rightBorderColor;
  /**
   * @deprecated
   */
  private Integer padding;
  /**
   * @deprecated
   */
  private Integer topPadding;
  /**
   * @deprecated
   */
  private Integer leftPadding;
  /**
   * @deprecated
   */
  private Integer bottomPadding;
  /**
   * @deprecated
   */
  private Integer rightPadding;
  /**
   * @deprecated
   */
  private byte hyperlinkType;
  /**
   * @deprecated
   */
  private byte hyperlinkTarget;
  /**
   * @deprecated
   */
  private Byte scaleImage;
  /**
   * @deprecated
   */
  private byte onErrorType;

 
  private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
  {
    in.defaultReadObject();

    if (PSEUDO_SERIAL_VERSION_UID < JRConstants.PSEUDO_SERIAL_VERSION_UID_3_7_2)
    {
      horizontalAlignmentValue = HorizontalAlignEnum.getByValue(horizontalAlignment);
      verticalAlignmentValue = VerticalAlignEnum.getByValue(verticalAlignment);
      scaleImageValue = ScaleImageEnum.getByValue(scaleImage);
      onErrorTypeValue = OnErrorTypeEnum.getByValue(onErrorType);

      horizontalAlignment = null;
      verticalAlignment = null;
      scaleImage = null;
    }
   
    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;
    }

    if (linkType == null)
    {
       linkType = JRHyperlinkHelper.getLinkType(HyperlinkTypeEnum.getByValue(hyperlinkType));
    }

    if (linkTarget == null)
    {
       linkTarget = JRHyperlinkHelper.getLinkTarget(HyperlinkTargetEnum.getByValue(hyperlinkTarget));
    }
  }


  public <T> void accept(PrintElementVisitor<T> visitor, T arg)
  {
    visitor.visit(this, arg);
  }
}
TOP

Related Classes of net.sf.jasperreports.engine.base.JRBasePrintImage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.