/* * 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.io.IOException; import java.io.ObjectInputStream; import java.io.Serializable; import net.sf.jasperreports.engine.JRConstants; import net.sf.jasperreports.engine.JRDatasetRun; import net.sf.jasperreports.engine.JRElementDataset; import net.sf.jasperreports.engine.JRExpression; import net.sf.jasperreports.engine.JRGroup; import net.sf.jasperreports.engine.JRRuntimeException; import net.sf.jasperreports.engine.type.IncrementTypeEnum; import net.sf.jasperreports.engine.type.ResetTypeEnum; /** * @author Teodor Danciu (teodord@users.sourceforge.net) * @version $Id: JRBaseElementDataset.java 3715 2010-04-08 18:08:49Z teodord $ */ public abstract class JRBaseElementDataset implements JRElementDataset, Serializable { /** * */ private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; protected ResetTypeEnum resetTypeValue = ResetTypeEnum.REPORT; protected IncrementTypeEnum incrementTypeValue = IncrementTypeEnum.NONE; protected JRGroup resetGroup = null; protected JRGroup incrementGroup = null; protected JRDatasetRun datasetRun; protected JRExpression incrementWhenExpression; protected JRBaseElementDataset() { } /** * */ protected JRBaseElementDataset(JRElementDataset dataset) { if (dataset != null) { resetTypeValue = dataset.getResetTypeValue(); incrementTypeValue = dataset.getIncrementTypeValue(); resetGroup = dataset.getResetGroup(); incrementGroup = dataset.getIncrementGroup(); datasetRun = dataset.getDatasetRun(); incrementWhenExpression = dataset.getIncrementWhenExpression(); } } /** * */ protected JRBaseElementDataset(JRElementDataset dataset, JRBaseObjectFactory factory) { factory.put(dataset, this); resetTypeValue = dataset.getResetTypeValue(); incrementTypeValue = dataset.getIncrementTypeValue(); resetGroup = factory.getGroup(dataset.getResetGroup()); incrementGroup = factory.getGroup(dataset.getIncrementGroup()); datasetRun = factory.getDatasetRun(dataset.getDatasetRun()); incrementWhenExpression = factory.getExpression(dataset.getIncrementWhenExpression()); } /** * @deprecated Replaced by {@link #getResetTypeValue()}. */ public byte getResetType() { return getResetTypeValue().getValue(); } /** * @deprecated Replaced by {@link #getIncrementTypeValue()}. */ public byte getIncrementType() { return getIncrementTypeValue().getValue(); } /** * */ public ResetTypeEnum getResetTypeValue() { return this.resetTypeValue; } /** * */ public IncrementTypeEnum getIncrementTypeValue() { return this.incrementTypeValue; } /** * */ public JRGroup getResetGroup() { return resetGroup; } /** * */ public JRGroup getIncrementGroup() { return incrementGroup; } public JRDatasetRun getDatasetRun() { return datasetRun; } public JRExpression getIncrementWhenExpression() { return incrementWhenExpression; } /* * These fields are only for serialization backward compatibility. */ private int PSEUDO_SERIAL_VERSION_UID = JRConstants.PSEUDO_SERIAL_VERSION_UID_3_7_2; //NOPMD /** * @deprecated */ private byte resetType; /** * @deprecated */ private byte incrementType; private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); if (PSEUDO_SERIAL_VERSION_UID < JRConstants.PSEUDO_SERIAL_VERSION_UID_3_7_2) { resetTypeValue = ResetTypeEnum.getByValue(resetType); incrementTypeValue = IncrementTypeEnum.getByValue(incrementType); } } /** * */ public Object clone() { JRBaseElementDataset clone = null; try { clone = (JRBaseElementDataset)super.clone(); } catch (CloneNotSupportedException e) { throw new JRRuntimeException(e); } if (incrementWhenExpression != null) { clone.incrementWhenExpression = (JRExpression)incrementWhenExpression.clone(); } if (datasetRun != null) { clone.datasetRun = (JRDatasetRun)datasetRun.clone(); } return clone; } }