Home | History | Annotate | Download | only in helpers

Lines Matching refs:Attributes

12 import org.xml.sax.Attributes;
324 * @param atts The SAX2 attributes.
330 String qName, Attributes atts)
444 * Internal class to wrap a SAX2 Attributes object for SAX1.
454 * Set the embedded Attributes object.
456 * @param The embedded SAX2 Attributes.
458 void setAttributes (Attributes attributes)
460 this.attributes = attributes;
465 * Return the number of attributes.
472 return attributes.getLength();
484 return attributes.getQName(i);
496 return attributes.getType(i);
508 return attributes.getValue(i);
520 return attributes.getType(qName);
532 return attributes.getValue(qName);
535 private Attributes attributes;