Package org.apache.batik.dom
Class GenericDOMImplementation
- java.lang.Object
-
- org.apache.batik.dom.AbstractDOMImplementation
-
- org.apache.batik.dom.GenericDOMImplementation
-
- All Implemented Interfaces:
java.io.Serializable
,Localizable
,org.w3c.dom.DOMImplementation
public class GenericDOMImplementation extends AbstractDOMImplementation
This class implements theDOMImplementation
.- Version:
- $Id: GenericDOMImplementation.java 1733416 2016-03-03 07:07:13Z gadams $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static org.w3c.dom.DOMImplementation
DOM_IMPLEMENTATION
The default instance of this class.-
Fields inherited from class org.apache.batik.dom.AbstractDOMImplementation
features, localizableSupport, RESOURCES
-
-
Constructor Summary
Constructors Constructor Description GenericDOMImplementation()
Creates a new GenericDOMImplementation object.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.w3c.dom.Document
createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, org.w3c.dom.DocumentType doctype)
DOM: ImplementsDOMImplementation.createDocument(String,String,DocumentType)
.org.w3c.dom.DocumentType
createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
DOM: ImplementsDOMImplementation.createDocumentType(String,String,String)
.static org.w3c.dom.DOMImplementation
getDOMImplementation()
Returns the default instance of this class.-
Methods inherited from class org.apache.batik.dom.AbstractDOMImplementation
createDocumentEventSupport, createEventSupport, formatMessage, getFeature, getLocale, hasFeature, initLocalizable, registerFeature, setLocale
-
-
-
-
Method Detail
-
getDOMImplementation
public static org.w3c.dom.DOMImplementation getDOMImplementation()
Returns the default instance of this class.
-
createDocument
public org.w3c.dom.Document createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, org.w3c.dom.DocumentType doctype) throws org.w3c.dom.DOMException
DOM: ImplementsDOMImplementation.createDocument(String,String,DocumentType)
.- Throws:
org.w3c.dom.DOMException
-
createDocumentType
public org.w3c.dom.DocumentType createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
DOM: ImplementsDOMImplementation.createDocumentType(String,String,String)
.
-
-