Home | History | Annotate | Download | only in dom

Lines Matching refs:ElementImpl

40 public class ElementImpl extends InnerNodeImpl implements Element {
49 ElementImpl(DocumentImpl document, String namespaceURI, String qualifiedName) {
54 ElementImpl(DocumentImpl document, String name) {
151 Element element = ((ElementImpl) node).getElementById(name);
327 return ElementImpl.this.attributes.size();
331 return ElementImpl.this.indexOfAttribute(name);
335 return ElementImpl.this.indexOfAttributeNS(namespaceURI, localName);
339 return ElementImpl.this.getAttributeNode(name);
343 return ElementImpl.this.getAttributeNodeNS(namespaceURI, localName);
347 return ElementImpl.this.attributes.get(index);
357 return ElementImpl.this.attributes.remove(i);
368 return ElementImpl.this.attributes.remove(i);
376 return ElementImpl.this.setAttributeNode((Attr)arg);
384 return ElementImpl.this.setAttributeNodeNS((Attr)arg);