for (int i = 0; i < list.size(); i++)
{
final Object o = list.get(i);
if (o instanceof SourceChunk)
{
final SourceChunk chunk = (SourceChunk) o;
flowRenderer.startSection(Renderer.TYPE_NORMALFLOW);
flowRenderer.add(chunk.getRootBand(), runtime, null);
flowRenderer.endSection();
}
else if (o instanceof ResultTable)
{
// perform the layouting first.