Save This Page
Home » Xerces-J-src.2.9.1 » org.apache.xerces » util » [javadoc | source]
org.apache.xerces.util
public class: DOMUtil [javadoc | source]
java.lang.Object
   org.apache.xerces.util.DOMUtil
Some useful utility methods. This class was modified in Xerces2 with a view to abstracting as much as possible away from the representation of the underlying parsed structure (i.e., the DOM). This was done so that, if Xerces ever adopts an in-memory representation more efficient than the DOM (such as a DTM), we should easily be able to convert our schema parsing to utilize it.
Nested Class Summary:
static class  DOMUtil.ThrowableMethods  Holder of methods from java.lang.Throwable. 
Constructor:
 protected DOMUtil() 
Method from org.apache.xerces.util.DOMUtil Summary:
copyInto,   createDOMException,   createLSException,   getAnnotation,   getAttr,   getAttrNS,   getAttrValue,   getAttrValueNS,   getAttrs,   getChildText,   getDocument,   getFirstChildElement,   getFirstChildElement,   getFirstChildElement,   getFirstChildElement,   getFirstChildElementNS,   getFirstChildElementNS,   getFirstVisibleChildElement,   getFirstVisibleChildElement,   getLastChildElement,   getLastChildElement,   getLastChildElement,   getLastChildElement,   getLastChildElementNS,   getLastChildElementNS,   getLastVisibleChildElement,   getLastVisibleChildElement,   getLocalName,   getName,   getNamespaceURI,   getNextSiblingElement,   getNextSiblingElement,   getNextSiblingElement,   getNextSiblingElement,   getNextSiblingElementNS,   getNextSiblingElementNS,   getNextVisibleSiblingElement,   getNextVisibleSiblingElement,   getParent,   getPrefix,   getRoot,   getSyntheticAnnotation,   getValue,   isHidden,   isHidden,   setHidden,   setHidden,   setVisible,   setVisible
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.xerces.util.DOMUtil Detail:
 public static  void copyInto(Node src,
    Node dest) throws DOMException 
    Copies the source tree into the specified place in a destination tree. The source node and its children are appended as children of the destination node.

    Note: This is an iterative implementation.

 public static DOMException createDOMException(short code,
    Throwable cause) 
    Creates a DOMException. On J2SE 1.4 and above the cause for the exception will be set.
 public static LSException createLSException(short code,
    Throwable cause) 
    Creates an LSException. On J2SE 1.4 and above the cause for the exception will be set.
 public static String getAnnotation(Node node) 
 public static Attr getAttr(Element elem,
    String name) 
 public static Attr getAttrNS(Element elem,
    String nsUri,
    String localName) 
 public static String getAttrValue(Element elem,
    String name) 
 public static String getAttrValueNS(Element elem,
    String nsUri,
    String localName) 
 public static Attr[] getAttrs(Element elem) 
 public static String getChildText(Node node) 
    Returns the concatenated child text of the specified node. This method only looks at the immediate children of type Node.TEXT_NODE or the children of any child node that is of type Node.CDATA_SECTION_NODE for the concatenation.
 public static Document getDocument(Node node) 
 public static Element getFirstChildElement(Node parent) 
    Finds and returns the first child element node.
 public static Element getFirstChildElement(Node parent,
    String elemName) 
    Finds and returns the first child node with the given name.
 public static Element getFirstChildElement(Node parent,
    String[] elemNames) 
    Finds and returns the first child node with the given name.
 public static Element getFirstChildElement(Node parent,
    String elemName,
    String attrName,
    String attrValue) 
    Finds and returns the first child node with the given name and attribute name, value pair.
 public static Element getFirstChildElementNS(Node parent,
    String[][] elemNames) 
    Finds and returns the first child node with the given qualified name.
 public static Element getFirstChildElementNS(Node parent,
    String uri,
    String localpart) 
    Finds and returns the first child node with the given qualified name.
 public static Element getFirstVisibleChildElement(Node parent) 
    Finds and returns the first visible child element node.
 public static Element getFirstVisibleChildElement(Node parent,
    Hashtable hiddenNodes) 
    Finds and returns the first visible child element node.
 public static Element getLastChildElement(Node parent) 
    Finds and returns the last child element node. Overload previous method for non-Xerces node impl.
 public static Element getLastChildElement(Node parent,
    String elemName) 
    Finds and returns the last child node with the given name.
 public static Element getLastChildElement(Node parent,
    String[] elemNames) 
    Finds and returns the last child node with the given name.
 public static Element getLastChildElement(Node parent,
    String elemName,
    String attrName,
    String attrValue) 
    Finds and returns the last child node with the given name and attribute name, value pair.
 public static Element getLastChildElementNS(Node parent,
    String[][] elemNames) 
    Finds and returns the last child node with the given qualified name.
 public static Element getLastChildElementNS(Node parent,
    String uri,
    String localpart) 
    Finds and returns the last child node with the given qualified name.
 public static Element getLastVisibleChildElement(Node parent) 
    Finds and returns the last visible child element node.
 public static Element getLastVisibleChildElement(Node parent,
    Hashtable hiddenNodes) 
    Finds and returns the last visible child element node. Overload previous method for non-Xerces node impl
 public static String getLocalName(Node node) 
    returns local name of this element if not null, otherwise returns the name of the node
 public static String getName(Node node) 
 public static String getNamespaceURI(Node node) 
 public static Element getNextSiblingElement(Node node) 
    Finds and returns the next sibling element node.
 public static Element getNextSiblingElement(Node node,
    String elemName) 
    Finds and returns the next sibling node with the given name.
 public static Element getNextSiblingElement(Node node,
    String[] elemNames) 
    Finds and returns the next sibling node with the given name.
 public static Element getNextSiblingElement(Node node,
    String elemName,
    String attrName,
    String attrValue) 
    Finds and returns the next sibling node with the given name and attribute name, value pair. Since only elements have attributes, the node returned will be of type Node.ELEMENT_NODE.
 public static Element getNextSiblingElementNS(Node node,
    String[][] elemNames) 
    Finds and returns the next sibling node with the given qualified name.
 public static Element getNextSiblingElementNS(Node node,
    String uri,
    String localpart) 
    Finds and returns the next sibling node with the given qualified name.
 public static Element getNextVisibleSiblingElement(Node node) 
 public static Element getNextVisibleSiblingElement(Node node,
    Hashtable hiddenNodes) 
 public static Element getParent(Element elem) 
 public static String getPrefix(Node node) 
 public static Element getRoot(Document doc) 
 public static String getSyntheticAnnotation(Node node) 
 public static String getValue(Attr attribute) 
 public static boolean isHidden(Node node) 
 public static boolean isHidden(Node node,
    Hashtable hiddenNodes) 
 public static  void setHidden(Node node) 
 public static  void setHidden(Node node,
    Hashtable hiddenNodes) 
 public static  void setVisible(Node node) 
 public static  void setVisible(Node node,
    Hashtable hiddenNodes)