if (BLUEPRINT_EXT_NAMESPACE_V1_0.equals(e.getNamespaceURI())
|| BLUEPRINT_EXT_NAMESPACE_V1_1.equals(e.getNamespaceURI())
|| BLUEPRINT_EXT_NAMESPACE_V1_2.equals(e.getNamespaceURI())) {
if (nodeNameEquals(e, PROPERTY_ELEMENT)) {
BeanProperty prop = context.parseElement(BeanProperty.class, enclosingComponent, e);
props.addEntry(createValue(context, prop.getName(), String.class.getName()), prop.getValue());
}
}
}
}
return props;