/* */
/* */ public void attributes(Object o, QName elementName, ElementBinding element, Attributes attrs, NamespaceContext nsCtx)
/* */ {
/* 701 */ super.attributes(o, elementName, element, attrs, nsCtx);
/* */
/* 703 */ ArrayBindBeanMetaDataFactory factory = (ArrayBindBeanMetaDataFactory)o;
/* 704 */ for (int i = 0; i < attrs.getLength(); i++)
/* */ {
/* 706 */ String localName = attrs.getLocalName(i);
/* 707 */ if ("type".equals(localName))
/* */ {
/* 709 */ factory.setType(attrs.getValue(i));
/* */ } else {
/* 711 */ if (!"name".equals(localName))
/* */ continue;
/* 713 */ factory.setName(attrs.getValue(i));
/* */ }
/* */ }
/* */ }