Searched defs:ownerDocument (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DPSVIElementNSImpl.java48 public PSVIElementNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI, argument
50 super(ownerDocument, namespaceURI, qualifiedName, localName);
56 public PSVIElementNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI, argument
58 super(ownerDocument, namespaceURI, qualifiedName);
H A DParentNode.java80 protected CoreDocumentImpl ownerDocument; field in class:ParentNode
98 protected ParentNode(CoreDocumentImpl ownerDocument) { argument
99 super(ownerDocument);
100 this.ownerDocument = ownerDocument;
136 newnode.ownerDocument = ownerDocument;
163 return ownerDocument;
170 CoreDocumentImpl ownerDocument() { method in class:ParentNode
171 return ownerDocument;
[all...]
H A DAttrImpl.java154 protected AttrImpl(CoreDocumentImpl ownerDocument, String name) { argument
155 super(ownerDocument);
181 (TextImpl) ownerDocument().createTextNode((String) value);
194 * set the ownerDocument of this node and its children
344 CoreDocumentImpl ownerDocument = ownerDocument();
346 if (ownerDocument.errorChecking && isReadOnly()) {
360 if (ownerDocument.getMutationEvents()) {
369 ownerDocument.createTextNode((String) value);
400 firstChild.ownerNode = ownerDocument;
[all...]
H A DNodeImpl.java63 * same implementation") Nodes are all aware of their ownerDocument,
67 * to their ownerDocument. When a node is owned by another node it relies
68 * on its owner to store its ownerDocument. Parent nodes always store it
71 * ownerDocument.
176 protected NodeImpl(CoreDocumentImpl ownerDocument) { argument
177 // as long as we do not have any owner, ownerNode is our ownerDocument
178 ownerNode = ownerDocument;
281 newnode.ownerNode = ownerDocument();
288 ownerDocument().callUserDataHandlers(this, newnode,
302 // otherwise ownerNode is our ownerDocument
314 CoreDocumentImpl ownerDocument() { method in class:NodeImpl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/
H A DFault1_1Impl.java60 public Fault1_1Impl(SOAPDocumentImpl ownerDocument, String prefix) { argument
61 super(ownerDocument, NameImpl.createFault1_1Name(prefix));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DFault1_2Impl.java67 public Fault1_2Impl(SOAPDocumentImpl ownerDocument, String prefix) { argument
68 super(ownerDocument, NameImpl.createFault1_2Name(null, prefix));

Completed in 465 milliseconds

12