*/
public void addGroup(int index, JRDesignGroup group) throws JRException
{
if (groupsMap.containsKey(group.getName()))
{
throw new JRException("Duplicate declaration of group : " + group.getName());
}
JRDesignVariable countVariable = new JRDesignVariable();
countVariable.setName(group.getName() + "_COUNT");
countVariable.setValueClass(Integer.class);