| com.google.gwt.xml.client.NodeList
All known Subclasses: com.google.gwt.xml.client.impl.NodeListImpl,
NodeList | public interface NodeList (Code) | | This interface represents an immutable ordered collection of nodes.
|
Method Summary | |
public int | getLength() This method retrieves the number of items in this NodeList
object. | public Node | item(int index) This method gets the item in the position denoted by index . |
getLength | public int getLength()(Code) | | This method retrieves the number of items in this NodeList
object.
the number of nodes in this NodeList object. |
item | public Node item(int index)(Code) | | This method gets the item in the position denoted by index .
Parameters: index - - the index to be retrieved the item at this index |
|
|