Home | History | Annotate | Download | only in helpers

Lines Matching defs:qAtts

474      * @param qAtts The XML attribute list (with qnames).
478 public void startElement (String qName, AttributeList qAtts) throws SAXException {
489 attAdapter.setAttributeList(qAtts);
499 int length = qAtts.getLength();
503 String attQName = qAtts.getName(i);
521 String value = qAtts.getValue(i);
535 String attQName = qAtts.getName(i);
536 String type = qAtts.getType(i);
537 String value = qAtts.getValue(i);
880 void setAttributeList (AttributeList qAtts)
882 this.qAtts = qAtts;
894 return qAtts.getLength();
932 return qAtts.getName(i).intern();
944 return qAtts.getType(i).intern();
956 return qAtts.getValue(i);
985 if (qAtts.getName(i).equals(qName)) {
1014 return qAtts.getType(qName).intern();
1039 return qAtts.getValue(qName);
1042 private AttributeList qAtts;