/**
*
*/
public JRBubblePlot getBubblePlot(JRBubblePlot bubblePlot) {
JRBaseBubblePlot baseBubblePlot = null;
if (bubblePlot != null)
{
baseBubblePlot = (JRBaseBubblePlot)get(bubblePlot);
if (baseBubblePlot == null)
{
baseBubblePlot = new JRBaseBubblePlot(bubblePlot, this);
}
}
return baseBubblePlot;
}