Public Member Functions | |
String | toString () |
Static Public Member Functions | |
static Vector< Node > | getChildren (Node nodo) |
static boolean | hasChildren (Node padre) |
static int | getNumOfChildren (Node padre) |
static Node | getChild (Node padre, int i) |
static Node | getFirstChild (Node padre) |
static Node | getLastChild (Node padre) |
static void | setAttribute (Element elem, String attribute_name, String attribute_value) |
static String | getAttribute (Element elem, String attribute_name) |
static Document | parse (InputStream input, String dtd_path, String doc_type) throws DOMParserException |
static Document | parse (File input) throws DOMParserException |
static Document | parse (String input, boolean parse_dtd) throws DOMParserException |
static String | toString (Node node) |
static boolean | toFile (String path, Document doc) |
static Element | clone (Node node) |
static Document | initializeDocument (String root) |
static boolean | formatting (String file_xml, String file_xsl, String file_html, String[] formal_params, String[] actual_params) throws javax.xml.transform.TransformerConfigurationException, javax.xml.transform.TransformerException, java.io.FileNotFoundException |
Static Public Attributes | |
static Document | doc |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Returns all children of a given node.
|
|
Returns true if a node has at least a child.
|
|
Returns the number of children of a given node.
|
|
Returns the i-esim child of a given node. Return null if the child do not exist.
|
|
Returns the first child of a given node. Returns null if the node do not have children.
|
|
Returns the last child of a given node. Returns null if the node do not have children.
|
|
Set the attribute to the input XML element. Replace every '<' with '<' in attribute value Replace every '>' with '>' in attribute value Replace every '&' with '&' Replace every ''' with ''' Replace every '"' with '"'
|
|
Returns the attribute value of the input XML elemente. Replace every '<' with '<' in attribute value Replace every '>' with '>' in attribute value Replace every '&' with '&' Replace every ''' with ''' Replace every '"' with '"'
|
|
XML parsing. Returns a DOM object. Throws an exception if an error occurs.
|
|
XML Parser. Returns a DOM object. Throws an exception if an error occurs.
|
|
XML Parser. Returns a DOM object. Throws an exception if an error occurs.
|
|
Print the document.
|
|
Returns a representation of the input node as string.
|
|
Saves the input document in the specified path. Returns false if the document cannot be saved.
|
|
Cloning of input node. This method is used to append to a document an XML node that belong to another DOM tree.
|
|
Method used to initialize the XML document.
|
|
Formatting of input xml document. XML --> HTML translator.
|
|
DOM document. |