Package | Description |
---|---|
com.ibm.tivoli.maximo.report.cognos.metadata.util |
Modifier and Type | Method and Description |
---|---|
XMLElement |
XMLElement.findElement(java.lang.String query) |
XMLElement |
XMLElement.getChild(java.lang.String name)
Reads the child node which has the given name from the given parent node
This method assumes that there is a single child node with
the given name under the given parent node, otherwise the first child
found is returned
|
static XMLElement |
XMLElement.parse(org.xml.sax.InputSource in)
Parses the XML file contained in the given input source and reads
the main Document node which is returned from this method
|
static XMLElement |
XMLElement.parse(java.io.InputStream in)
Parses the XML file contained in the given input stream and reads
the main Document node which is returned from this method
|
static XMLElement |
XMLElement.parse(java.io.Reader in)
Parses the XML file contained in the given input stream and reads
the main Document node which is returned from this method
|
Modifier and Type | Method and Description |
---|---|
java.util.List<XMLElement> |
XMLElement.find(java.lang.String query) |
java.util.List<XMLElement> |
XMLElement.getChildren()
Returns the list of child nodes that have the given name from
the given parent node
|
java.util.List<XMLElement> |
XMLElement.getChildren(java.lang.String name)
Returns the list of child nodes that have the given name from
the given parent node
|