90919293949596979899100
if ( ! hasNext() ) { throw new NoSuchElementException(); } Attribute attr = this.next; this.next = null; findNext(); return attr;
107108109110111112113114115116117
return; } while ( this.attributes.current() != null ) { Attribute attr = this.attributes.next(); if ( validNode( attr ) ) { this.next = attr; break;
170171172173174175176177178
return elem.getNamespace(); } public String getAttributeName(Object obj) { Attribute attr = (Attribute) obj; return attr.getName(); }
177178179180181182183184185
return attr.getName(); } public String getAttributeNamespaceUri(Object obj) { Attribute attr = (Attribute) obj; return attr.getNamespace(); }
323324325326327328329330331
return elem.getQName(); } public String getAttributeQName(Object obj) { Attribute attr = (Attribute) obj; return attr.getQName(); }
349350351352353354355356357
return txt.getString(); } public String getAttributeStringValue(Object obj) { Attribute attr = (Attribute) obj; return attr.getValue(); }