public SchemaAttributeGroup findAttributeGroup(QName name)
{
SchemaAttributeGroup.Ref ref = findAttributeGroupRef(name);
if (ref == null)
return null;
SchemaAttributeGroup result = ref.get();
if (XmlBeans.ASSERTS)
XmlBeans.assertTrue(result != null);
return result;
}