/**
*
*/
public JRLinePlot getLinePlot(JRLinePlot linePlot) {
JRBaseLinePlot baseLinePlot = null;
if (linePlot != null)
{
baseLinePlot = (JRBaseLinePlot)get(linePlot);
if (baseLinePlot == null)
{
baseLinePlot = new JRBaseLinePlot(linePlot, this);
}
}
return baseLinePlot;
}