/**
*
*/
public JRScatterPlot getScatterPlot(JRScatterPlot scatterPlot) {
JRFillScatterPlot fillScatterPlot = null;
if (scatterPlot != null){
fillScatterPlot = (JRFillScatterPlot)get(scatterPlot);
if (fillScatterPlot == null){
fillScatterPlot = new JRFillScatterPlot(scatterPlot, this);
}
}
return fillScatterPlot;
}