/* */ }
/* */
/* */ public void attributes(Object o, QName elementName, ElementBinding element, Attributes attrs, NamespaceContext nsCtx)
/* */ {
/* 829 */ AbstractBeanMetaData arrayReplacement = (AbstractBeanMetaData)o;
/* 830 */ BeanMetaDataUtil util = new BeanMetaDataUtil();
/* 831 */ String name = null;
/* 832 */ for (int i = 0; i < attrs.getLength(); i++)
/* */ {
/* 834 */ String localName = attrs.getLocalName(i);
/* 835 */ if ("name".equals(localName))
/* */ {
/* 837 */ name = attrs.getValue(i);
/* */ }
/* 839 */ else if ("class".equals(localName))
/* */ {
/* 841 */ BeanMetaDataUtil.setSimpleProperty(arrayReplacement, "classes", attrs.getValue(i));
/* */ }
/* 843 */ else if ("expr".equals(localName))
/* */ {
/* 845 */ BeanMetaDataUtil.setSimpleProperty(arrayReplacement, "expr", attrs.getValue(i));
/* */ }
/* 847 */ else if ("manager-bean".equals(localName))
/* */ {
/* 849 */ util.setManagerBean(attrs.getValue(i));
/* */ } else {
/* 851 */ if (!"manager-property".equals(localName))
/* */ continue;
/* 853 */ util.setManagerProperty(attrs.getValue(i));
/* */ }
/* */ }
/* 856 */ util.setAspectManagerProperty(arrayReplacement, "manager");
/* */
/* 858 */ if (name == null)
/* */ {
/* 860 */ name = GUID.asString();
/* */ }