Home
last modified time | relevance | path

Searched refs:theAtts (Results 1 – 2 of 2) sorted by relevance

/external/tagsoup/src/org/ccil/cowan/tagsoup/
DElement.java27 private AttributesImpl theAtts; // attributes of element field in Element
39 if (defaultAttributes) theAtts = new AttributesImpl(type.atts()); in Element()
40 else theAtts = new AttributesImpl(); in Element()
58 public AttributesImpl atts() { return theAtts; } in atts()
150 theType.setAttribute(theAtts, name, type, value); in setAttribute()
160 for (int i = theAtts.getLength() - 1; i >= 0; i--) { in anonymize()
161 if (theAtts.getType(i).equals("ID") || in anonymize()
162 theAtts.getQName(i).equals("name")) { in anonymize()
163 theAtts.removeAttribute(i); in anonymize()
176 for (int i = theAtts.getLength() - 1; i >= 0; i--) { in clean()
[all …]
DElementType.java31 private AttributesImpl theAtts; // default attributes field in ElementType
55 theAtts = new AttributesImpl(); in ElementType()
150 public AttributesImpl atts() {return theAtts;} in atts()
245 setAttribute(theAtts, name, type, value); in setAttribute()