public void startElement(XMLElement element, Attributes attributes) {
if (RuntimeTagNames.GROUP.equals(element.getQName())) {
for (int i=0; i<attributes.getLength();i++) {
if (RuntimeTagNames.NAME.equals(attributes.getQName(i))) {
group = new Group(attributes.getValue(i));
}
}
}
}