uri = getURIForPrefix(prefix);
} else {
localName = attributeGroupName;
uri = targetNamespace;
}
AttributeGroup globalAttributeGroup = rootSchema.getAttributeGroup(uri, localName);
if (globalAttributeGroup != null) {
int size = globalAttributeGroup.getAttributes().size();
if (globalAttributeGroup.getAnyAttribute() != null) {
processAnyAttribute(targetNamespace, defaultNamespace, owningType);
}
for (int j = 0; j < size; j++) {
processAttribute(targetNamespace, defaultNamespace, owningType, (Attribute) globalAttributeGroup.getAttributes().get(j), false);
}
}
}
}