Uses of Class
org.fife.rsta.ac.js.ecma.api.e4x.E4XXMLList

Packages that use E4XXMLList
  • Uses of E4XXMLList in org.fife.rsta.ac.js.ecma.api.e4x

    Modifier and Type
    Field
    Description
    E4XXMLList.protype
    property prototype
  • Uses of E4XXMLList in org.fife.rsta.ac.js.ecma.api.e4x.functions

    Modifier and Type
    Method
    Description
    E4XXMLFunctions.attribute(JSString attributeName)
    function attribute(attributeName) finds list of XML attributes associated with the attribute name.
    E4XXMLListFunctions.attribute(JSString attributeName)
    function attribute(attributeName) calls the attribute method of each XML object in this XMLList object passing attributeName as a parameter and returns an XMLList containing the results in order.
    E4XXMLFunctions.attributes()
    function attributes() list of XML attributes associated with an XML object.
    E4XXMLListFunctions.attributes()
    function attributes() calls the attributes() method of each XML object in this XMLList object and returns an XMLList containing the results in order.
    E4XXMLFunctions.child(JSNumber propertyName)
    function child(propertyName) finds list of XML object matching a given propertyName.
    E4XXMLFunctions.child(JSString propertyName)
    function child(propertyName) finds list of XML object matching a given propertyName.
    E4XXMLListFunctions.child(JSString propertyName)
    function child(propertyName) calls the child() method of each XML object in this XMLList object and returns an XMLList containing the results in order.
    E4XXMLFunctions.children()
    function children() returns list of children for the XML element.
    E4XXMLListFunctions.children()
    function children() calls the children() method of each XML object in this XMLList object and returns an XMLList containing the results concatenated in order.
    E4XXMLFunctions.comments()
    function comments() returns list of comments for the XML element.
    E4XXMLListFunctions.comments()
    function comments() calls the comments method of each XML object in this XMLList object and returns an XMLList containing the results concatenated in order.
    E4XXMLFunctions.descendants(JSString name)
    function descendants(name) returns all the XML valued descendants (children, grandchildren, great-grandchildren, etc.)
    E4XXMLListFunctions.descendants(JSString name)
    function descendants(name) calls the descendants method of each XML object in this XMLList object with the optional parameter name (or the string "*" if name is omitted) and returns an XMLList containing the results concatenated in order.
    E4XXMLFunctions.elements(JSString name)
    function elements(name) returns the child elements.
    E4XXMLListFunctions.elements(JSString name)
    function elements(name) calls the elements method of each XML object in this XMLList object passing the optional parameter name (or "*" if it is omitted) and returns an XMList containing the results in order.
    E4XXMLListFunctions.normalize()
    function normalize() puts all text nodes in this XMLList, all the XML objects it contains and the descendents of all the XML objects it contains into a normal form by merging adjacent text nodes and eliminating empty text nodes.
    E4XXMLFunctions.processingInstructions(JSString name)
    function processingInstructions(name) A list of all processing instructions that are children of this element.
    E4XXMLListFunctions.processingInstructions(JSString name)
    function processingInstructions(name) calls the processingInstructions method of each XML object in this XMLList object passing the optional parameter name (or "*" if it is omitted) and returns an XMList containing the results in order.
    E4XXMLFunctions.text()
    function text() returns an XMLList containing all XML properties of this XML object that represent XML text nodes.
    E4XXMLListFunctions.text()
    function text() calls the text method of each XML object contained in this XMLList object and returns an XMLList containing the results concatenated in order.
    Methods in org.fife.rsta.ac.js.ecma.api.e4x.functions with parameters of type E4XXMLList
    Modifier and Type
    Method
    Description
    E4XXMLFunctions.contains(E4XXMLList value)
    function contains(value) returns the result of comparing this XML object with the given value.
    E4XXMLFunctions.setChildren(E4XXMLList value)
    function setChildren(value) replaces the XML properties of this XML object with a new set of XML properties from value.