/* * 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.fill; import java.awt.Color; import net.sf.jasperreports.engine.JRException; import net.sf.jasperreports.engine.JRGraphicElement; import net.sf.jasperreports.engine.JRPen; import net.sf.jasperreports.engine.type.FillEnum; import net.sf.jasperreports.engine.util.JRPenUtil; import net.sf.jasperreports.engine.util.JRStyleResolver; /** * @author Teodor Danciu (teodord@users.sourceforge.net) * @version $Id: JRFillGraphicElement.java 3833 2010-05-27 14:16:59Z teodord $ */ public abstract class JRFillGraphicElement extends JRFillElement implements JRGraphicElement { /** * */ protected JRFillGraphicElement( JRBaseFiller filler, JRGraphicElement graphicElement, JRFillObjectFactory factory ) { super(filler, graphicElement, factory); } protected JRFillGraphicElement( JRFillGraphicElement graphicElement, JRFillCloneFactory factory ) { super(graphicElement, factory); } /** * */ public JRPen getLinePen() { return ((JRGraphicElement)parent).getLinePen(); } /** * @deprecated Replaced by {@link #getLinePen()} */ public byte getPen() { return JRPenUtil.getPenFromLinePen(getLinePen()); } /** * @deprecated Replaced by {@link #getLinePen()} */ public Byte getOwnPen() { return JRPenUtil.getOwnPenFromLinePen(getLinePen()); } /** * @deprecated Replaced by {@link #getLinePen()} */ public void setPen(byte pen) { } /** * @deprecated Replaced by {@link #getLinePen()} */ public void setPen(Byte pen) { } /** * @deprecated Replaced by {@link #getFillValue()} */ public byte getFill() { return getFillValue().getValue(); } /** * @deprecated Replaced by {@link #getOwnFillValue()} */ public Byte getOwnFill() { return getOwnFillValue() == null ? null : getOwnFillValue().getValueByte(); } /** * @deprecated Replaced by {@link #setFill(FillEnum)} */ public void setFill(byte fill) { throw new UnsupportedOperationException(); } /** * @deprecated Replaced by {@link #setFill(FillEnum)} */ public void setFill(Byte fill) { throw new UnsupportedOperationException(); } /** * */ public FillEnum getFillValue() { return JRStyleResolver.getFillValue(this); } /** * */ public FillEnum getOwnFillValue() { return ((JRGraphicElement)this.parent).getOwnFillValue(); } /** * */ public void setFill(FillEnum fill) { throw new UnsupportedOperationException(); } /** * */ public Float getDefaultLineWidth() { return ((JRGraphicElement)this.parent).getDefaultLineWidth(); } /** * */ public Color getDefaultLineColor() { return getForecolor(); } /** * */ public void rewind() { } /** * */ protected boolean prepare( int availableHeight, boolean isOverflow ) throws JRException { boolean willOverflow = false; super.prepare(availableHeight, isOverflow); if (!this.isToPrint()) { return willOverflow; } boolean isToPrint = true; boolean isReprinted = false; if (isOverflow && this.isAlreadyPrinted() && !this.isPrintWhenDetailOverflows()) { isToPrint = false; } if ( isToPrint && this.isPrintWhenExpressionNull() && !this.isPrintRepeatedValues() ) { if ( ( !this.isPrintInFirstWholeBand() || !this.getBand().isFirstWholeOnPageColumn() ) && ( this.getPrintWhenGroupChanges() == null || !this.getBand().isNewGroup(this.getPrintWhenGroupChanges()) ) && ( !isOverflow || !this.isPrintWhenDetailOverflows() ) ) { isToPrint = false; } } if ( isToPrint && availableHeight < this.getRelativeY() + getHeight() ) { isToPrint = false; willOverflow = true; } if ( isToPrint && isOverflow && //(this.isAlreadyPrinted() || !this.isPrintRepeatedValues()) (this.isPrintWhenDetailOverflows() && (this.isAlreadyPrinted() || (!this.isAlreadyPrinted() && !this.isPrintRepeatedValues()))) ) { isReprinted = true; } this.setToPrint(isToPrint); this.setReprinted(isReprinted); return willOverflow; } }