Searched defs:doctype (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementation.java104 * @param doctype The type of document to be created or <code>null</code>.
105 * When <code>doctype</code> is not <code>null</code>, its
110 * <code>doctype</code> are <code>null</code>, the returned
126 * <br>WRONG_DOCUMENT_ERR: Raised if <code>doctype</code> has already
136 DocumentType doctype)
134 createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMImplementationImpl.java120 * @param doctype The type of document to be created or null.<p>
122 * When doctype is not null, its
126 * @throws DOMException WRONG_DOCUMENT_ERR: Raised if doctype has
132 DocumentType doctype)
135 if(namespaceURI == null && qualifiedName == null && doctype == null){
136 //if namespaceURI, qualifiedName and doctype are null, returned document is empty with
140 else if (doctype != null && doctype.getOwnerDocument() != null) {
144 DocumentImpl doc = new DocumentImpl(doctype);
130 createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) argument
H A DPSVIDOMImplementationImpl.java96 * @param doctype The type of document to be created or null.<p>
98 * When doctype is not null, its
102 * @throws DOMException WRONG_DOCUMENT_ERR: Raised if doctype has
108 DocumentType doctype)
111 if (doctype != null && doctype.getOwnerDocument() != null) {
117 DocumentImpl doc = new PSVIDocumentImpl(doctype);
106 createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) argument
H A DPSVIDocumentImpl.java56 public PSVIDocumentImpl(DocumentType doctype) { argument
57 super(doctype);
H A DCoreDOMImplementationImpl.java73 // Document and doctype counter. Used to assign order to documents and
250 * @param doctype The type of document to be created or null.<p>
252 * When doctype is not null, its
256 * @throws DOMException WRONG_DOCUMENT_ERR: Raised if doctype has
263 DocumentType doctype)
265 if (doctype != null && doctype.getOwnerDocument() != null) {
273 CoreDocumentImpl doc = new CoreDocumentImpl(doctype);
466 /** NON-DOM: increment document/doctype counter */
470 /** NON-DOM: increment document/doctype counte
260 createDocument( String namespaceURI, String qualifiedName, DocumentType doctype) argument
[all...]
H A DDocumentImpl.java132 public DocumentImpl(DocumentType doctype) argument
134 super(doctype);
138 public DocumentImpl(DocumentType doctype, boolean grammarAccess) { argument
139 super(doctype, grammarAccess);
H A DCoreDocumentImpl.java275 public CoreDocumentImpl(DocumentType doctype) { argument
276 this(doctype, false);
280 public CoreDocumentImpl(DocumentType doctype, boolean grammarAccess) { argument
282 if (doctype != null) {
285 doctypeImpl = (DocumentTypeImpl) doctype;
291 appendChild(doctype);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOMImplementation.java44 public Document createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DXSLOutputAttributes.java41 * doctype-public
42 * doctype-system
129 /** Set the value coming from the xsl:output doctype-public and doctype-system stylesheet properties
137 /** Set the value coming from the xsl:output doctype-public stylesheet attribute.
138 * @param doctype the public identifier to be used in the DOCTYPE
141 public void setDoctypePublic(String doctype); argument
142 /** Set the value coming from the xsl:output doctype-system stylesheet attribute.
143 * @param doctype the system identifier to be used in the DOCTYPE
146 public void setDoctypeSystem(String doctype); argument
[all...]
H A DEmptySerializer.java587 public void setDoctypePublic(String doctype) argument
594 public void setDoctypeSystem(String doctype) argument
H A DToUnknownStream.java663 * Set the doctype in the underlying XML handler. Remember that this method
664 * was called, just in case we need to transfer this doctype to an HTML handler
665 * @param doctype the public doctype to set
668 public void setDoctypePublic(String doctype) argument
670 m_handler.setDoctypePublic(doctype);
675 * Set the doctype in the underlying XML handler. Remember that this method
676 * was called, just in case we need to transfer this doctype to an HTML handler
677 * @param doctype the system doctype t
680 setDoctypeSystem(String doctype) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java1561 public Document createDocument(String namespaceURI,String qualfiedName,DocumentType doctype) argument

Completed in 56 milliseconds