Home | History | Annotate | Download | only in dom

Lines Matching defs:NodeImpl

47 public abstract class NodeImpl implements Node {
70 NodeImpl(DocumentImpl document) {
228 static void setNameNS(NodeImpl node, String namespaceURI, String qualifiedName) {
277 static void setName(NodeImpl node, String name) {
448 private NodeImpl getNamespacingElement() {
454 return (NodeImpl) ((Document) this).getDocumentElement();
463 return (NodeImpl) ((Attr) this).getOwnerElement();
481 private NodeImpl getContainingElement() {
484 return (NodeImpl) p;
498 NodeImpl target = getNamespacingElement();
499 for (NodeImpl node = target; node != null; node = node.getContainingElement()) {
558 NodeImpl target = getNamespacingElement();
559 for (NodeImpl node = target; node != null; node = node.getContainingElement()) {