Searched defs:ownerNode (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DAttributeMap.java55 protected AttributeMap(ElementImpl ownerNode, NamedNodeMapImpl defaults) { argument
56 super(ownerNode);
78 boolean errCheck = ownerNode.ownerDocument().errorChecking;
84 if (arg.getOwnerDocument() != ownerNode.ownerDocument()) {
96 if (errCheck && argn.getOwnerElement() != ownerNode) {
106 argn.ownerNode = ownerNode;
114 previous.ownerNode = ownerNode.ownerDocument();
127 ownerNode
479 cloneMap(NodeImpl ownerNode) argument
[all...]
H A DNamedNodeMapImpl.java85 protected NodeImpl ownerNode; // the node this map belongs to field in class:NamedNodeMapImpl
92 protected NamedNodeMapImpl(NodeImpl ownerNode) { argument
93 this.ownerNode = ownerNode;
181 CoreDocumentImpl ownerDocument = ownerNode.ownerDocument();
223 CoreDocumentImpl ownerDocument = ownerNode.ownerDocument();
333 public NamedNodeMapImpl cloneMap(NodeImpl ownerNode) { argument
334 NamedNodeMapImpl newmap = new NamedNodeMapImpl(ownerNode);
H A DNodeImpl.java70 * And when a node doesn't have an owner, ownerNode refers to its
149 protected NodeImpl ownerNode; // typically the parent but not always! field in class:NodeImpl
177 // as long as we do not have any owner, ownerNode is our ownerDocument
178 ownerNode = ownerDocument;
281 newnode.ownerNode = ownerDocument();
302 // otherwise ownerNode is our ownerDocument
304 return ownerNode.ownerDocument();
306 return (Document) ownerNode;
316 // otherwise ownerNode is our ownerDocument
318 return ownerNode
[all...]

Completed in 316 milliseconds