Uses of Class
uxparser.XElem

Uses of XElem in uxparser
 

Methods in uxparser that return XElem
 XElem XElem.addAttr(java.lang.String name, java.lang.String value)
          Add the specified attribute name value pair using the null namespace.
 XElem XElem.addAttr(java.lang.String name, java.lang.String value)
          Add the specified attribute name value pair using the null namespace.
 XElem XElem.addAttr(XNs ns, java.lang.String name, java.lang.String value)
          Add the specified attribute name value pair.
 XElem XElem.addAttr(XNs ns, java.lang.String name, java.lang.String value)
          Add the specified attribute name value pair.
 XElem XElem.addContent(int index, XContent child)
          Insert the content instance as a child of this element at the specified index.
 XElem XElem.addContent(int index, XContent child)
          Insert the content instance as a child of this element at the specified index.
 XElem XElem.addContent(XContent child)
          Add the specified content to the end of the content list.
 XElem XElem.addContent(XContent child)
          Add the specified content to the end of the content list.
 XElem XElem.addText(java.lang.String txt)
          Creates and adds a text descendent.
 XElem XElem.addText(java.lang.String txt)
          Creates and adds a text descendent.
 XElem XElem.copy()
          Make a new cloned copy of this XElem instance.
 XElem XElem.copy()
          Make a new cloned copy of this XElem instance.
 XElem XParser.elem()
          Get the current element if type() is ELEM_START or ELEM_END.
 XElem XParser.elem()
          Get the current element if type() is ELEM_START or ELEM_END.
 XElem XElem.elem(int index)
          Get the XContent at the specified index cast to a XElem.
 XElem XParser.elem(int depth)
          Get the at the current depth.
 XElem XParser.elem(int depth)
          Get the at the current depth.
 XElem XElem.elem(int index)
          Get the XContent at the specified index cast to a XElem.
 XElem XElem.elem(java.lang.String name)
          Get the first child element the specified local name regardless of namespace.
 XElem XElem.elem(java.lang.String name)
          Get the first child element the specified local name regardless of namespace.
 XElem XElem.elem(XNs ns, java.lang.String name)
          Get the first child element in the specified namespace and with the specified local name.
 XElem XElem.elem(XNs ns, java.lang.String name)
          Get the first child element in the specified namespace and with the specified local name.
 XElem[] XElem.elems()
          Get the array of XElem children for this element.
 XElem[] XElem.elems()
          Get the array of XElem children for this element.
 XElem[] XElem.elems(java.lang.String name)
          Get all the children elements with the specified local name regardless of namespace.
 XElem[] XElem.elems(java.lang.String name)
          Get all the children elements with the specified local name regardless of namespace.
 XElem[] XElem.elems(XNs ns)
          Get all the children elements in the specified namespace.
 XElem[] XElem.elems(XNs ns)
          Get all the children elements in the specified namespace.
 XElem[] XElem.elems(XNs ns, java.lang.String name)
          Get all the children elements in the specified namespace and with the specified local name.
 XElem[] XElem.elems(XNs ns, java.lang.String name)
          Get all the children elements in the specified namespace and with the specified local name.
 XElem XException.getElem()
          Return the XElem passed to the constructor or null.
 XElem XException.getElem()
          Return the XElem passed to the constructor or null.
 XElem XContent.parent()
          Get the parent element or null if not currently parented.
 XElem XContent.parent()
          Get the parent element or null if not currently parented.
 XElem XParser.parse()
          Convenience for parse(true).
 XElem XParser.parse()
          Convenience for parse(true).
 XElem XParser.parse(boolean close)
          Parse the entire next element into memory as a tree of XElems and optionally close the underlying input stream.
 XElem XParser.parse(boolean close)
          Parse the entire next element into memory as a tree of XElems and optionally close the underlying input stream.
 XElem XParser.parseCurrent()
          Convenience for parseCurrent(false).
 XElem XParser.parseCurrent()
          Convenience for parseCurrent(false).
 XElem XParser.parseCurrent(boolean close)
          Parse the entire current element into memory as a tree of XElems and optionally close the underlying input stream.
 XElem XParser.parseCurrent(boolean close)
          Parse the entire current element into memory as a tree of XElems and optionally close the underlying input stream.
 

Constructors in uxparser with parameters of type XElem
XException(java.lang.String msg, XElem elem)
          Construct using element's line number.
XException(java.lang.String msg, XElem elem)
          Construct using element's line number.
XException(java.lang.String msg, XElem elem, java.lang.Throwable cause)
          Construct using element's line number.
XException(java.lang.String msg, XElem elem, java.lang.Throwable cause)
          Construct using element's line number.