/**
*
*/
public JRBarPlot getBarPlot(JRBarPlot barPlot)
{
JRFillBarPlot fillBarPlot = null;
if (barPlot != null)
{
fillBarPlot = (JRFillBarPlot)get(barPlot);
if (fillBarPlot == null)
{
fillBarPlot = new JRFillBarPlot(barPlot, this);
}
}
return fillBarPlot;
}