/**
*
*/
public JRPiePlot getPiePlot(JRPiePlot piePlot)
{
JRFillPiePlot fillPiePlot = null;
if (piePlot != null)
{
fillPiePlot = (JRFillPiePlot)get(piePlot);
if (fillPiePlot == null)
{
fillPiePlot = new JRFillPiePlot(piePlot, this);
}
}
return fillPiePlot;
}