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