if (XMLUtil.getElementNameSpace(child).equals(XMLUtil.getElementNameSpace(decoratorDecleration)) && XMLUtil.isElementHasDecoratesChild(child))
{
Field field = ClassUtil.getFieldWithName(component.getReturnType(), child.getLocalName());
if (field == null)
{
throw new NonexistentFieldException(
errorMessage + "Field with name : " + child.getLocalName() + " not found in the decorator class : "
+ component.getReturnType().getName());
}
Element type;
NodeList ns1 = child.getElementsByTagName(WebBeansConstants.WEB_BEANS_XML_DECORATES_ELEMENT);