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