| java.lang.Object com.bostechcorp.cbesb.console.help.Dom
findChild | public static Node findChild(Node parent, String nodeName, boolean recursive)(Code) | | Search for a child with the given nodeName. If recursive, search in all
the child of firdt level, then if not found, search in the 2nd level of
the first child, ...
Parameters: parent - parent node Parameters: nodeName - node name Parameters: recursive - boolean to know if we got through the xml tree a node |
findChild | public static Node findChild(Node parent, String namespaceURI, String nodeName, boolean recursive)(Code) | | Search for a child with the given nodeName. If recursive, search in all
the child of firdt level, then if not found, search in the 2nd level of
the first child, ...
Parameters: parent - parent node Parameters: namespaceURI - The namespaceURI of the node Parameters: nodeName - node name Parameters: recursive - boolean to know if we got through the xml tree a node |
getFirstChild | public static Node getFirstChild(Node node)(Code) | | Return the first child of a node, regardless text node
Parameters: node - |
getNextSibling | public static Node getNextSibling(Node node)(Code) | | Return the next sibling of a node, regardless text node
Parameters: node - |
getPrefixForNamespaceURI | public static String getPrefixForNamespaceURI(Node node, String namespaceURI)(Code) | | Search a document to see if a namespace is declared in it and if it is
returns this namespace URI
Parameters: node - Parameters: namespaceURI - Parameters: deep - |
getPrefixForNamespaceURIRecursive | public static String getPrefixForNamespaceURIRecursive(Node node, String namespaceURI)(Code) | | |
|
|