}
}
public void redo(final ReportRenderContext renderContext)
{
final AbstractRootLevelBand elementById = (AbstractRootLevelBand)
ModelUtility.findElementById(renderContext.getReportDefinition(), target);
if (oldElement != null)
{
elementById.removeSubreport(oldElement);
}
if (newElement != null)
{
elementById.addSubReport(position, newElement);
}
}