graphics2D.fill(elementBounds);
}
if (element instanceof Section)
{
final Section section = (Section) element;
final int count = section.getElementCount();
for (int i = 0; i < count; i++)
{
final ReportElement e = section.getElement(i);
if (e instanceof Element)
{
draw((Element) e, graphics2D);
}
}