Methods Summary |
---|
public int | getLength()The number of ASObjects in the ASObjectList .
The range of valid child node indices is 0 to length-1
inclusive.
|
public ASObject | getNamedItem(java.lang.String name)Retrieves an ASObject specified by name.
|
public ASObject | getNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)Retrieves an ASObject specified by local name and
namespace URI.
|
public ASObject | item(int index)Returns the index th item in the map. The index starts at
0 . If index is greater than or equal to the
number of nodes in the list, this returns null .
|
public ASObject | removeNamedItem(java.lang.String name)Removes an ASObject specified by a nodeName .
|
public ASObject | removeNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)Removes an ASObject specified by a namespace URI and a
local name.
|
public ASObject | setNamedItem(ASObject newASObject)Adds an ASObject using its nodeName
attribute. If an ASObject with that name is already
present in this map, it is replaced by the new one.
|
public ASObject | setNamedItemNS(ASObject newASObject)Adds an ASObject using its namespaceURI and
localName . If an ASObject with the same
namespaceURI and localName is already
present in this map, it is replaced by the new one.
|