IParameterDefnBase param = iter.next();
// Group section found
if (param instanceof IParameterGroupDefn)
{
// Get Group Name
IParameterGroupDefn group = (IParameterGroupDefn) param;
// Get the parameters within a group
Iterator<IScalarParameterDefn> i2 = group.getContents().iterator();
while (i2.hasNext())
{
IScalarParameterDefn scalar = i2.next();
ReportParameter rp = new ReportParameter();