Package | Description |
---|---|
org.mdiutil.xml.tree |
This package contains a parser allowing to get a tree of Nodes from an XML file.
|
org.mdiutil.xml.tree.dom |
This package allow to create a DOM representation of an XML tree.
|
Modifier and Type | Class and Description |
---|---|
class |
XMLCommentedRoot
A root Node in an XML File with an associated comment.
|
class |
XMLInvalidRoot
A not well-formed root Node in an XML File.
|
class |
XMLNumberedRoot
A root Node in an XML File with a comment.
|
Modifier and Type | Method and Description |
---|---|
XMLRoot |
XMLRoot.copy()
Create a copy of this node.
|
XMLRoot |
XMLRoot.copy(boolean deep)
Create a copy of this node.
|
XMLRoot |
XMLTreeHandler.getRoot()
Return the root node, as a
XMLRoot . |
static XMLRoot |
XMLNodeUtilities.getRootNode(File file)
Return the root Node from a file.
|
XMLRoot |
XMLNodeUtilities2.getRootNode(File file)
Return the root Node from a file.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(File file,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from a file.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(File file,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware)
Return the root Node from a file.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(File file,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware,
boolean allowInternalReaders)
Return the root Node from a file.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(File file,
int options)
Return the root Node from a file.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(File file,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from a file.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(File file,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware)
Return the root Node from a file.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader)
Return the root Node from a Reader.
|
XMLRoot |
XMLNodeUtilities2.getRootNode(Reader reader)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware,
boolean allowInternalReaders)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader,
int options)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(Reader reader,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware,
boolean allowInternalReaders)
Return the root Node from a Reader.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(String str)
Return the root Node from a String.
|
XMLRoot |
XMLNodeUtilities2.getRootNode(String str)
Return the root Node from a String.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(String str,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from a String.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(String str,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware)
Return the root Node from a String.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(String str,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware,
boolean allowInternalReaders)
Return the root Node from a String.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(String str,
int options)
Return the root Node from a String.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(String str,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from a String.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(URL xmlURL)
Return the root Node from an XML URL.
|
XMLRoot |
XMLNodeUtilities2.getRootNode(URL xmlURL)
Return the root Node from an XML URL.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(URL xmlURL,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from an XML URL.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(URL xmlURL,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware)
Return the root Node from an XML URL.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(URL xmlURL,
boolean showExceptions,
boolean showWarnings,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware,
boolean allowInternalReaders)
Return the root Node from an XML URL.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(URL xmlURL,
int options)
Return the root Node from an URL.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(URL xmlURL,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers)
Return the root Node from an XML URL.
|
static XMLRoot |
XMLNodeUtilities.getRootNode(URL xmlURL,
XMLParserConfiguration config,
boolean preserveSpace,
boolean keepLineNumbers,
boolean isNamespaceAware)
Return the root Node from an XML URL.
|
Modifier and Type | Method and Description |
---|---|
Document |
XMLDocumentBuilderFactory.parse(XMLRoot root)
Create a document from an XML tree.
|