/*
* 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.charts.base;
import java.io.Serializable;
import net.sf.jasperreports.charts.JRTimeSeries;
import net.sf.jasperreports.engine.JRConstants;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRHyperlink;
import net.sf.jasperreports.engine.JRRuntimeException;
import net.sf.jasperreports.engine.base.JRBaseObjectFactory;
/**
* @author Teodor Danciu (teodord@users.sourceforge.net)
* @version $Id: JRBaseTimeSeries.java 3938 2010-08-19 14:59:36Z teodord $
*/
public class JRBaseTimeSeries implements JRTimeSeries, Serializable
{
/**
*
*/
private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID;
protected JRExpression seriesExpression;
protected JRExpression timePeriodExpression;
protected JRExpression valueExpression;
protected JRExpression labelExpression;
protected JRHyperlink itemHyperlink;
/**
*
*/
protected JRBaseTimeSeries()
{
}
/**
*
*/
public JRBaseTimeSeries(JRTimeSeries timeSeries, JRBaseObjectFactory factory)
{
factory.put(timeSeries, this);
seriesExpression = factory.getExpression(timeSeries.getSeriesExpression());
timePeriodExpression = factory.getExpression(timeSeries.getTimePeriodExpression());
valueExpression = factory.getExpression(timeSeries.getValueExpression());
labelExpression = factory.getExpression(timeSeries.getLabelExpression());
itemHyperlink = factory.getHyperlink(timeSeries.getItemHyperlink());
}
/**
*
*/
public JRExpression getSeriesExpression()
{
return seriesExpression;
}
/**
*
*/
public JRExpression getTimePeriodExpression()
{
return timePeriodExpression;
}
/**
*
*/
public JRExpression getValueExpression()
{
return valueExpression;
}
/**
*
*/
public JRExpression getLabelExpression()
{
return labelExpression;
}
public JRHyperlink getItemHyperlink()
{
return itemHyperlink;
}
/**
*
*/
public Object clone()
{
JRBaseTimeSeries clone = null;
try
{
clone = (JRBaseTimeSeries)super.clone();
}
catch (CloneNotSupportedException e)
{
throw new JRRuntimeException(e);
}
if (seriesExpression != null)
{
clone.seriesExpression = (JRExpression)seriesExpression.clone();
}
if (timePeriodExpression != null)
{
clone.timePeriodExpression = (JRExpression)timePeriodExpression.clone();
}
if (valueExpression != null)
{
clone.valueExpression = (JRExpression)valueExpression.clone();
}
if (labelExpression != null)
{
clone.labelExpression = (JRExpression)labelExpression.clone();
}
if (itemHyperlink != null)
{
clone.itemHyperlink = (JRHyperlink)itemHyperlink.clone();
}
return clone;
}
}