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