/**
*
*/
public JRBar3DPlot getBar3DPlot(JRBar3DPlot barPlot) {
JRFillBar3DPlot fillBarPlot = null;
if (barPlot != null){
fillBarPlot = (JRFillBar3DPlot)get(barPlot);
if (fillBarPlot == null){
fillBarPlot = new JRFillBar3DPlot(barPlot, this);
}
}
return fillBarPlot;
}