return this.groups.get(groupName);
}
public GroupPanel createNewGroup(){
final String name = this.checkName("Group", "Group", 0);
this.activeGroup = new GroupPanel(this.visualRifEditor, name);
this.groups.put(name, this.activeGroup);
this.visualRifEditor.getTreePane().addNewGroup(this.activeGroup,this.visualRifEditor.getDocumentContainer().getNameOfActiveElement());
this.printGroups();
final TreePath path = this.activeGroup.getGroupPath();
this.visualRifEditor.getDocumentContainer().getActiveDocument().getDocumentEditorPane().updateRuleNameInVisualGraphsComponentArray(name, name);