| org.ozoneDB.xml.dom.NodeImpl org.ozoneDB.xml.dom.DocumentImpl org.ozoneDB.xml.XMLDocument
XMLDocument | public class XMLDocument extends DocumentImpl implements XMLDocumentProxy(Code) | | Base class for user XML document. In addition to several API extensions, user
XML documents can be used to map XML documents directly into application data
structures, with the aid of user elements (
XMLElement ).
XMLDocument extends the DOM
org.w3c.dom.Document with the
following methods:
Documents of specific type can be created safely by passing the document class
to
DOMFactory.createDocument . They are supported by the built in XML
parser, printer and processor. User documents are also supported by
org.openxml.source.Source through use of the docClass property.
A user document derived from
XMLDocument must be declared public and
the constructor must be public. User elements should be registered in the
constructor, and read-only status should be obeyed by calling
XMLDocument.isReadOnly .
version: $Revision: 1.1 $ $Date: 2001/12/18 11:03:24 $ author: Assaf Arkin See Also: org.w3c.dom.Document See Also: XMLElement See Also: XMLCollection See Also: XMLElementFactory |
Constructor Summary | |
public | XMLDocument() Default constructor. |
XMLDocument | public XMLDocument()(Code) | | Default constructor.
|
cloneNode | public Node cloneNode(boolean deep)(Code) | | |
Methods inherited from org.ozoneDB.xml.dom.DocumentImpl | public void acquire(long lockTimeout) throws RuntimeException(Code)(Java Doc) public void assignDoctype(DocumentTypeProxy docType)(Code)(Java Doc) public void clearDocument() throws Exception(Code)(Java Doc) public Object clone()(Code)(Java Doc) public synchronized void cloneInto(NodeProxy into, boolean deep)(Code)(Java Doc) public Node cloneNode(boolean deep)(Code)(Java Doc) final public Attr createAttribute(String name) throws DOMException(Code)(Java Doc) final public Attr createAttribute(String name, String defValue) throws DOMException(Code)(Java Doc) public Attr createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName) throws DOMException(Code)(Java Doc) final public CDATASection createCDATASection(String data) throws DOMException(Code)(Java Doc) final public Comment createComment(String data)(Code)(Java Doc) public Document createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype) throws DOMException(Code)(Java Doc) final public DocumentFragment createDocumentFragment()(Code)(Java Doc) public DocumentType createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId) throws DOMException(Code)(Java Doc) public Element createElement(String tagName) throws DOMException(Code)(Java Doc) public Element createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName) throws DOMException(Code)(Java Doc) final public EntityReference createEntityReference(String name) throws DOMException(Code)(Java Doc) final public ProcessingInstruction createProcessingInstruction(String target, String data) throws DOMException(Code)(Java Doc) final public Text createTextNode(String data)(Code)(Java Doc) public synchronized boolean equals(Object other)(Code)(Java Doc) public XMLContainerHelper getContainer()(Code)(Java Doc) final public DocumentType getDoctype()(Code)(Java Doc) public Element getDocumentElement()(Code)(Java Doc) public Element getElementById(java.lang.String elementId)(Code)(Java Doc) final public NodeList getElementsByTagName(String tagName)(Code)(Java Doc) public NodeList getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)(Code)(Java Doc) final public DOMImplementation getImplementation()(Code)(Java Doc) public short getNodeType()(Code)(Java Doc) public boolean hasFeature(String feature, String version)(Code)(Java Doc) public Node importNode(Node importedNode, boolean deep) throws DOMException(Code)(Java Doc) public void lock() throws RuntimeException(Code)(Java Doc) public void onDelete() throws Exception(Code)(Java Doc) public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException(Code)(Java Doc) public void registerElement(String tagName, Class elementClass)(Code)(Java Doc) public void setContainer(XMLContainerHelper _container)(Code)(Java Doc) final public void setDoctype(DocumentType docType)(Code)(Java Doc) public void setElementTypes(Hashtable elementTypes)(Code)(Java Doc) final public void setNodeValue(String value)(Code)(Java Doc) final protected boolean supportsChildern()(Code)(Java Doc) public String toString()(Code)(Java Doc) public void unlock()(Code)(Java Doc) public void writeExternal(ObjectOutput out) throws IOException(Code)(Java Doc)
|
|
|