}
final Element bodyElement = group.getBody();
if (bodyElement instanceof GroupDataBody)
{
final GroupDataBody body = (GroupDataBody) bodyElement;
if (ModelUtility.isHideInLayoutGui(body.getDetailsHeader()) == false)
{
rootBandComponents.add(new RootBandRenderer(body.getDetailsHeader(), renderContext));
}
if (ModelUtility.isHideInLayoutGui(body.getNoDataBand()) == false)
{
rootBandComponents.add(new RootBandRenderer(body.getNoDataBand(), renderContext));
}
if (ModelUtility.isHideInLayoutGui(body.getItemBand()) == false)
{
rootBandComponents.add(new RootBandRenderer(body.getItemBand(), renderContext));
}
if (ModelUtility.isHideInLayoutGui(body.getDetailsFooter()) == false)
{
rootBandComponents.add(new RootBandRenderer(body.getDetailsFooter(), renderContext));
}
break;
}
else if (group instanceof CrosstabGroup)
{