/* */
/* */ public void attributes(Object o, QName elementName, ElementBinding element, Attributes attrs, NamespaceContext nsCtx)
/* */ {
/* 769 */ super.attributes(o, elementName, element, attrs, nsCtx);
/* */
/* 771 */ IntroductionBeanMetaDataFactory factory = (IntroductionBeanMetaDataFactory)o;
/* 772 */ for (int i = 0; i < attrs.getLength(); i++)
/* */ {
/* 774 */ String localName = attrs.getLocalName(i);
/* 775 */ if ("expr".equals(localName))
/* */ {
/* 777 */ factory.setExpr(attrs.getValue(i));
/* */ } else {
/* 779 */ if (!"class".equals(localName))
/* */ continue;
/* 781 */ factory.setClazz(attrs.getValue(i));
/* */ }
/* */ }
/* */ }