|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Document | |
---|---|
javax.xml.parsers | |
org.eclipse.ercp.jaxp.implForCore | |
org.eclipse.ercp.xml.dom | |
org.eclipse.ui | Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. |
org.w3c.dom |
Uses of Document in javax.xml.parsers |
---|
Methods in javax.xml.parsers that return Document | |
---|---|
abstract Document |
DocumentBuilder.newDocument()
Obtain a new instance of a DOM Document object
to build a DOM tree with. |
Document |
DocumentBuilder.parse(java.io.File file)
Parse the content of the given file as an XML document and return a new DOM Document object. |
abstract Document |
DocumentBuilder.parse(InputSource is)
Parse the content of the given input source as an XML document and return a new DOM Document object. |
Document |
DocumentBuilder.parse(java.io.InputStream is)
Parse the content of the given InputStream as an XML
document and return a new DOM Document object. |
Document |
DocumentBuilder.parse(java.io.InputStream is,
java.lang.String systemId)
Parse the content of the given InputStream as an XML
document and return a new DOM Document object. |
Document |
DocumentBuilder.parse(java.lang.String uri)
Parse the content of the given URI as an XML document and return a new DOM Document object. |
Uses of Document in org.eclipse.ercp.jaxp.implForCore |
---|
Methods in org.eclipse.ercp.jaxp.implForCore that return Document | |
---|---|
Document |
DOMBuilder.getDocument()
|
Document |
DocumentBuilderImpl.newDocument()
|
Document |
DocumentBuilderImpl.parse(InputSource is)
|
Uses of Document in org.eclipse.ercp.xml.dom |
---|
Classes in org.eclipse.ercp.xml.dom that implement Document | |
---|---|
class |
DocumentImpl
|
Methods in org.eclipse.ercp.xml.dom that return Document | |
---|---|
Document |
DOMImplementationImpl.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Creates an XML Document object of the specified type with
its document element. |
Document |
NodeImpl.getOwnerDocument()
The Document object associated with this node. |
Uses of Document in org.eclipse.ui |
---|
Constructors in org.eclipse.ui with parameters of type Document | |
---|---|
XMLMemento(Document document,
Element element)
Creates a memento for the specified document and element. |
Uses of Document in org.w3c.dom |
---|
Methods in org.w3c.dom that return Document | |
---|---|
Document |
DOMImplementation.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Creates an XML Document object of the specified type with
its document element. |
Document |
Node.getOwnerDocument()
The Document object associated with this node. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |