/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/ |
H A D | DeferredNotationImpl.java | 69 * All other data, can be requested from the ownerDocument via the index. 71 DeferredNotationImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 72 super(ownerDocument, null); 102 DeferredDocumentImpl ownerDocument = 103 (DeferredDocumentImpl)this.ownerDocument(); 104 name = ownerDocument.getNodeName(fNodeIndex); 106 ownerDocument.getNodeType(fNodeIndex); 108 publicId = ownerDocument.getNodeValue(fNodeIndex); 109 systemId = ownerDocument.getNodeURI(fNodeIndex); 110 int extraDataIndex = ownerDocument [all...] |
H A D | DeferredElementDefinitionImpl.java | 59 * All other data, can be requested from the ownerDocument via the index. 61 DeferredElementDefinitionImpl(DeferredDocumentImpl ownerDocument, argument 63 super(ownerDocument, null); 91 DeferredDocumentImpl ownerDocument = 92 (DeferredDocumentImpl)this.ownerDocument; 93 name = ownerDocument.getNodeName(fNodeIndex); 101 boolean orig = ownerDocument.getMutationEvents(); 102 ownerDocument.setMutationEvents(false); 108 DeferredDocumentImpl ownerDocument = 109 (DeferredDocumentImpl)this.ownerDocument; [all...] |
H A D | DeferredEntityReferenceImpl.java | 99 * All other data, can be requested from the ownerDocument via the index. 101 DeferredEntityReferenceImpl(DeferredDocumentImpl ownerDocument, argument 103 super(ownerDocument, null); 133 DeferredDocumentImpl ownerDocument = 134 (DeferredDocumentImpl)this.ownerDocument; 135 name = ownerDocument.getNodeName(fNodeIndex); 136 baseURI = ownerDocument.getNodeValue(fNodeIndex); 148 DeferredDocumentImpl ownerDocument = 149 (DeferredDocumentImpl) ownerDocument(); 150 ownerDocument [all...] |
H A D | DeferredAttrNSImpl.java | 64 * All other data, can be requested from the ownerDocument via the index. 66 DeferredAttrNSImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 67 super(ownerDocument, null); 95 DeferredDocumentImpl ownerDocument = 96 (DeferredDocumentImpl) ownerDocument(); 97 name = ownerDocument.getNodeName(fNodeIndex); 108 int extra = ownerDocument.getNodeExtra(fNodeIndex); 112 namespaceURI = ownerDocument.getNodeURI(fNodeIndex); 114 int extraNode = ownerDocument.getLastChild(fNodeIndex); 115 type = ownerDocument [all...] |
H A D | DeferredElementImpl.java | 76 * other data, can be requested from the ownerDocument via the index. 106 DeferredDocumentImpl ownerDocument = 107 (DeferredDocumentImpl)this.ownerDocument; 110 boolean orig = ownerDocument.mutationEvents; 111 ownerDocument.mutationEvents = false; 113 name = ownerDocument.getNodeName(fNodeIndex); 117 int index = ownerDocument.getNodeExtra(fNodeIndex); 121 NodeImpl attr = (NodeImpl)ownerDocument.getNodeObject(index); 123 index = ownerDocument.getPrevSibling(index); 128 ownerDocument [all...] |
H A D | DeferredProcessingInstructionImpl.java | 56 * All other data, can be requested from the ownerDocument via the index. 58 DeferredProcessingInstructionImpl(DeferredDocumentImpl ownerDocument, argument 60 super(ownerDocument, null, null); 87 DeferredDocumentImpl ownerDocument = 88 (DeferredDocumentImpl) this.ownerDocument(); 89 target = ownerDocument.getNodeName(fNodeIndex); 90 data = ownerDocument.getNodeValueString(fNodeIndex);
|
H A D | DeferredTextImpl.java | 64 * All other data, can be requested from the ownerDocument via the index. 66 DeferredTextImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 67 super(ownerDocument, null); 94 DeferredDocumentImpl ownerDocument = 95 (DeferredDocumentImpl) this.ownerDocument(); 96 data = ownerDocument.getNodeValueString(fNodeIndex); 103 isIgnorableWhitespace(ownerDocument.getNodeExtra(fNodeIndex) == 1);
|
H A D | DeferredEntityImpl.java | 82 * All other data, can be requested from the ownerDocument via the index. 84 DeferredEntityImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 85 super(ownerDocument, null); 116 DeferredDocumentImpl ownerDocument = 117 (DeferredDocumentImpl)this.ownerDocument; 118 name = ownerDocument.getNodeName(fNodeIndex); 121 publicId = ownerDocument.getNodeValue(fNodeIndex); 122 systemId = ownerDocument.getNodeURI(fNodeIndex); 123 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex); 124 ownerDocument [all...] |
H A D | DeferredAttrImpl.java | 91 * All other data, can be requested from the ownerDocument via the index. 93 DeferredAttrImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 94 super(ownerDocument, null); 122 DeferredDocumentImpl ownerDocument = 123 (DeferredDocumentImpl) ownerDocument(); 124 name = ownerDocument.getNodeName(fNodeIndex); 125 int extra = ownerDocument.getNodeExtra(fNodeIndex); 129 int extraNode = ownerDocument.getLastChild(fNodeIndex); 130 type = ownerDocument.getTypeInfo(extraNode); 140 DeferredDocumentImpl ownerDocument [all...] |
H A D | DeferredCDATASectionImpl.java | 73 * can be requested from the ownerDocument via the index. 75 DeferredCDATASectionImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 76 super(ownerDocument, null); 103 DeferredDocumentImpl ownerDocument = 104 (DeferredDocumentImpl) this.ownerDocument(); 105 data = ownerDocument.getNodeValueString(fNodeIndex);
|
H A D | DeferredCommentImpl.java | 54 * can be requested from the ownerDocument via the index. 56 DeferredCommentImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 57 super(ownerDocument, null); 84 DeferredDocumentImpl ownerDocument = 85 (DeferredDocumentImpl) this.ownerDocument(); 86 data = ownerDocument.getNodeValueString(fNodeIndex);
|
H A D | DeferredDocumentTypeImpl.java | 70 * All other data, can be requested from the ownerDocument via the index. 72 DeferredDocumentTypeImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) { argument 73 super(ownerDocument, null); 101 DeferredDocumentImpl ownerDocument = 102 (DeferredDocumentImpl)this.ownerDocument; 103 name = ownerDocument.getNodeName(fNodeIndex); 106 publicID = ownerDocument.getNodeValue(fNodeIndex); 107 systemID = ownerDocument.getNodeURI(fNodeIndex); 108 int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex); 109 internalSubset = ownerDocument [all...] |
H A D | DeferredElementNSImpl.java | 68 * other data, can be requested from the ownerDocument via the index. 98 DeferredDocumentImpl ownerDocument = 99 (DeferredDocumentImpl) this.ownerDocument; 102 boolean orig = ownerDocument.mutationEvents; 103 ownerDocument.mutationEvents = false; 105 name = ownerDocument.getNodeName(fNodeIndex); 116 namespaceURI = ownerDocument.getNodeURI(fNodeIndex); 117 type = (XSTypeDefinition)ownerDocument.getTypeInfo(fNodeIndex); 121 int attrIndex = ownerDocument.getNodeExtra(fNodeIndex); 126 AttrImpl attr = (AttrImpl) ownerDocument [all...] |
H A D | CharacterDataImpl.java | 72 protected CharacterDataImpl(CoreDocumentImpl ownerDocument, String data) { argument 73 super(ownerDocument); 112 CoreDocumentImpl ownerDocument = ownerDocument(); 114 if (ownerDocument.errorChecking && isReadOnly()) { 119 // revisit: may want to set the value in ownerDocument. 129 ownerDocument.modifyingCharacterData(this, replace); 134 ownerDocument.modifiedCharacterData(this, oldvalue, value, replace); 146 ownerDocument().replacedText(this); 231 CoreDocumentImpl ownerDocument [all...] |
H A D | ElementDefinitionImpl.java | 61 public ElementDefinitionImpl(CoreDocumentImpl ownerDocument, String name) { argument 62 super(ownerDocument); 64 attributes = new NamedNodeMapImpl(ownerDocument);
|
H A D | ParentNode.java | 80 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 D | AttrNSImpl.java | 73 protected AttrNSImpl(CoreDocumentImpl ownerDocument, argument 77 super(ownerDocument, qualifiedName); 82 CoreDocumentImpl ownerDocument = ownerDocument(); 93 ownerDocument.checkNamespaceWF(qname, colon1, colon2); 97 if (ownerDocument.errorChecking) { 98 ownerDocument.checkQName(null, localName); 116 ownerDocument.checkQName(prefix, localName); 117 ownerDocument.checkDOMNSErr(prefix, namespaceURI); 122 public AttrNSImpl(CoreDocumentImpl ownerDocument, argument 133 AttrNSImpl(CoreDocumentImpl ownerDocument, String value) argument 158 setValues(CoreDocumentImpl ownerDocument, String namespaceURI, String qualifiedName, String localName) argument [all...] |
H A D | AttrImpl.java | 154 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 D | ChildNode.java | 64 protected ChildNode(CoreDocumentImpl ownerDocument) { argument 65 super(ownerDocument); 116 // our ownerDocument and we don't have a parent 125 // our ownerDocument and we don't have a parent
|
H A D | AttributeMap.java | 78 boolean errCheck = ownerNode.ownerDocument().errorChecking; 84 if (arg.getOwnerDocument() != ownerNode.ownerDocument()) { 114 previous.ownerNode = ownerNode.ownerDocument(); 127 ownerNode.ownerDocument().setAttrNode(argn, previous); 148 boolean errCheck = ownerNode.ownerDocument().errorChecking; 154 if(arg.getOwnerDocument() != ownerNode.ownerDocument()) { 183 previous.ownerNode = ownerNode.ownerDocument(); 205 ownerNode.ownerDocument().setAttrNode(argn, previous); 302 CoreDocumentImpl ownerDocument = ownerNode.ownerDocument(); [all...] |
H A D | ElementNSImpl.java | 78 protected ElementNSImpl(CoreDocumentImpl ownerDocument, argument 83 super(ownerDocument, qualifiedName); 116 ownerDocument.checkNamespaceWF(qname, colon1, colon2); 120 if (ownerDocument.errorChecking) { 121 ownerDocument.checkQName(null, localName); 146 if (ownerDocument.errorChecking) { 156 ownerDocument.checkQName(prefix, localName); 157 ownerDocument.checkDOMNSErr(prefix, namespaceURI); 163 protected ElementNSImpl(CoreDocumentImpl ownerDocument, argument 168 super(ownerDocument, qualifiedNam 175 ElementNSImpl(CoreDocumentImpl ownerDocument, String value) argument 201 setValues(CoreDocumentImpl ownerDocument, String namespaceURI, String qualifiedName, String localName) argument [all...] |
H A D | PSVIAttrNSImpl.java | 47 public PSVIAttrNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI, argument 49 super(ownerDocument, namespaceURI, qualifiedName, localName); 55 public PSVIAttrNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI, argument 57 super(ownerDocument, namespaceURI, qualifiedName);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/ |
H A D | ElementFactory.java | 39 SOAPDocumentImpl ownerDocument, 42 ownerDocument, 48 SOAPDocumentImpl ownerDocument, 51 ownerDocument, 58 SOAPDocumentImpl ownerDocument, 64 if (ownerDocument == null) { 66 ownerDocument = new SOAPPart1_1Impl().getDocument(); 68 ownerDocument = new SOAPPart1_2Impl().getDocument(); 70 ownerDocument = new SOAPDocumentImpl(null); 75 createNamedElement(ownerDocument, localNam 38 createElement( SOAPDocumentImpl ownerDocument, Name name) argument 47 createElement( SOAPDocumentImpl ownerDocument, QName name) argument 57 createElement( SOAPDocumentImpl ownerDocument, String localName, String prefix, String namespaceUri) argument 85 createNamedElement( SOAPDocumentImpl ownerDocument, String localName, String prefix, String namespaceUri) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/ |
H A D | Detail1_2Impl.java | 49 public Detail1_2Impl(SOAPDocumentImpl ownerDocument, String prefix) { argument 50 super(ownerDocument, NameImpl.createSOAP12Name("Detail", prefix)); 53 public Detail1_2Impl(SOAPDocumentImpl ownerDocument) { argument 54 super(ownerDocument, NameImpl.createSOAP12Name("Detail"));
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/ |
H A D | ComponentImpl.java | 47 this.ownerDocument = _owner; 53 protected final SchemaDocumentImpl ownerDocument; field in class:ComponentImpl 55 if(ownerDocument==null) 58 return ownerDocument.getSchema(); 62 if(ownerDocument==null) 69 return ownerDocument;
|