/* */ {
/* */ public void attributes(Object o, QName elementName, ElementBinding element, Attributes attrs, NamespaceContext nsCtx)
/* */ {
/* 502 */ super.attributes(o, elementName, element, attrs, nsCtx);
/* */
/* 504 */ AspectManagerAwareBeanMetaDataFactory factory = (AspectManagerAwareBeanMetaDataFactory)o;
/* 505 */ for (int i = 0; i < attrs.getLength(); i++)
/* */ {
/* 507 */ String localName = attrs.getLocalName(i);
/* 508 */ if ("manager-bean".equals(localName))
/* */ {
/* 510 */ factory.setManagerBean(attrs.getValue(i));
/* */ } else {
/* 512 */ if (!"manager-property".equals(localName))
/* */ continue;
/* 514 */ factory.setManagerProperty(attrs.getValue(i));
/* */ }
/* */ }
/* */ }