/* (non-Javadoc)
* @see net.sf.jasperreports.engine.JRAbstractObjectFactory#getBubblePlot(net.sf.jasperreports.charts.JRBubblePlot)
*/
public JRBubblePlot getBubblePlot(JRBubblePlot bubblePlot) {
JRFillBubblePlot fillBubblePlot = null;
if (bubblePlot != null)
{
fillBubblePlot = (JRFillBubblePlot)get(bubblePlot);
if (fillBubblePlot == null)
{
fillBubblePlot = new JRFillBubblePlot(bubblePlot, this);
}
}
return fillBubblePlot;
}