public TypeProcessorSubstitutionGroup(final Type parentParam) {
parent = parentParam;
}
public void process(final XmlParser xmlParser, final Attributes attributes) throws Exception {
SubstitutionGroup substitutionGroup = new SubstitutionGroup();
parent.addSubstitutionGroup(substitutionGroup);
xmlParser.nextTag();
xmlParser.oneOrMore("element", new TypeProcessorElement(substitutionGroup.getHelperType()));
}