/* (non-Javadoc)
* @see net.sf.jasperreports.engine.JRAbstractObjectFactory#getBar3DPlot(net.sf.jasperreports.charts.JRBar3DPlot)
*/
public JRBar3DPlot getBar3DPlot(JRBar3DPlot barPlot) {
JRBaseBar3DPlot baseBarPlot = null;
if (barPlot != null)
{
baseBarPlot = (JRBaseBar3DPlot)get(barPlot);
if (baseBarPlot == null)
{
baseBarPlot = new JRBaseBar3DPlot(barPlot, this);
}
}
return baseBarPlot;
}