|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Document | |
| org.jdom | |
| org.jdom.input | |
| org.jdom.output | |
| Uses of Document in org.jdom |
| Methods in org.jdom that return Document | |
Document |
Document.setRootElement(Element rootElement)
This sets the root for the
Document. |
Document |
Document.setDocType(DocType docType)
This will set the
declaration for this Document. |
Document |
Document.addProcessingInstruction(ProcessingInstruction pi)
|
Document |
Document.addProcessingInstruction(java.lang.String target,
java.lang.String data)
|
Document |
Document.addProcessingInstruction(java.lang.String target,
java.util.Map data)
|
Document |
Document.setProcessingInstructions(java.util.List processingInstructions)
This sets the PIs for this Document to those in the
List
|
Document |
Document.addNamespaceMapping(java.lang.String prefix,
java.lang.String mapping)
Adds a namespace prefix/URI mapping. |
Document |
Document.addComment(Comment comment)
This will add a comment to the Document. |
| Uses of Document in org.jdom.input |
| Methods in org.jdom.input that return Document | |
abstract Document |
AbstractBuilder.build(java.io.InputStream in)
This builds a document from the supplied input stream. |
Document |
AbstractBuilder.build(java.io.File file)
This builds a document from the supplied filename. |
Document |
AbstractBuilder.build(java.net.URL url)
This builds a document from the supplied URL. |
Document |
DOMBuilder.build(java.io.InputStream in)
This builds a document from the supplied input stream. |
Document |
DOMBuilder.build(org.w3c.dom.Document domDocument)
This will build a JDOM tree from an existing DOM tree. |
Document |
Builder.build(java.io.InputStream in)
This builds a document from the supplied input stream. |
Document |
Builder.build(java.io.File file)
This builds a document from the supplied filename. |
Document |
Builder.build(java.net.URL url)
This builds a document from the supplied URL. |
Document |
SAXBuilder.build(java.io.InputStream in)
This builds a document from the supplied input stream. |
| Uses of Document in org.jdom.output |
| Methods in org.jdom.output with parameters of type Document | |
void |
SAXOutputter.output(Document document)
This will output the Document, firing off
SAX events. |
void |
XMLOutputter.output(Document doc,
java.io.OutputStream out)
This will print the Document to the given output stream. |
protected void |
XMLOutputter.printDeclaration(Document doc,
java.io.PrintWriter out)
This will print the declaration to the given output stream. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||