Home | History | Annotate | Download | only in helpers

Lines Matching refs:atts

72      * @param atts The existing Attributes object.
74 public AttributesImpl (Attributes atts)
76 setAttributes(atts);
346 * @param atts The attributes to copy.
348 public void setAttributes (Attributes atts)
351 length = atts.getLength();
355 data[i*5] = atts.getURI(i);
356 data[i*5+1] = atts.getLocalName(i);
357 data[i*5+2] = atts.getQName(i);
358 data[i*5+3] = atts.getType(i);
359 data[i*5+4] = atts.getValue(i);