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

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

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

    Modifier and Type
    Method
    Description
    E4XXMLFunctions.appendChild(E4XXML xml)
    function appendChild(xml) appends the given child to the end of this XML object's properties and returns this XML object.
    E4XXMLFunctions.insertChildAfter(E4XXML child1, E4XXML child2)
    function insertChildAfter( child1 , child2) inserts the given child2 after the given child1 in this XML object and returns this XML object.
    E4XXMLFunctions.insertChildBefore(E4XXML child1, E4XXML child2)
    function insertChildBefore( child1 , child2) inserts the given child2 before the given child1 in this XML object and returns this XML object.
    E4XXMLFunctions.normalize()
    function normalize() puts all text nodes in this and all descendant XML objects into a normal form by merging adjacent text nodes and eliminating empty text nodes.
    E4XXMLFunctions.parent()
    function parent() returns the parent of this XML object.
    E4XXMLListFunctions.parent()
    function parent() If all items in this XMLList object have the same parent, it is returned.
    E4XXMLFunctions.prependChild(E4XXML value)
    function prependChild(value) adds a new child to an element, prior to all other children.
    E4XXMLFunctions.removeNamespace(E4XNamespace namespace)
    function removeNamespace(namespace) removes a namespace from the in-scope namespaces of the element.
    E4XXMLFunctions.replace(JSNumber propertyName, JSObject value)
    function replace(propertyName, value) replaces the XML properties of this XML object specified by propertyName with value and returns this XML object.
    E4XXMLFunctions.replace(JSString propertyName, JSObject value)
    function replace(propertyName, value) replaces the XML properties of this XML object specified by propertyName with value and returns this XML object.
    E4XXMLFunctions.setChildren(E4XXML value)
    function setChildren(value) replaces the XML properties of this XML object with a new set of XML properties from 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.
    Methods in org.fife.rsta.ac.js.ecma.api.e4x.functions with parameters of type E4XXML
    Modifier and Type
    Method
    Description
    E4XXMLFunctions.appendChild(E4XXML xml)
    function appendChild(xml) appends the given child to the end of this XML object's properties and returns this XML object.
    E4XXMLFunctions.contains(E4XXML value)
    function contains(value) returns the result of comparing this XML object with the given value.
    E4XXMLListFunctions.contains(E4XXML value)
    function contains(value) returns a boolean value indicating whether this XMLList object contains an XML object that compares equal to the given value.
    E4XXMLFunctions.insertChildAfter(E4XXML child1, E4XXML child2)
    function insertChildAfter( child1 , child2) inserts the given child2 after the given child1 in this XML object and returns this XML object.
    E4XXMLFunctions.insertChildBefore(E4XXML child1, E4XXML child2)
    function insertChildBefore( child1 , child2) inserts the given child2 before the given child1 in this XML object and returns this XML object.
    E4XXMLFunctions.prependChild(E4XXML value)
    function prependChild(value) adds a new child to an element, prior to all other children.
    E4XXMLFunctions.setChildren(E4XXML value)
    function setChildren(value) replaces the XML properties of this XML object with a new set of XML properties from value.