| com.google.gwt.xml.client.NamedNodeMap
All known Subclasses: com.google.gwt.xml.client.impl.NamedNodeMapImpl,
NamedNodeMap | public interface NamedNodeMap (Code) | | Represents a string-to-node map, used in getAttributes .
|
Method Summary | |
public int | getLength() Returns the number of items in this NamedNodeMap . | public Node | getNamedItem(String name) This method gets the item having the given name. | public Node | item(int index) This method gets the item at the index position. |
getLength | public int getLength()(Code) | | Returns the number of items in this NamedNodeMap .
the number of items in this NamedNodeMap |
getNamedItem | public Node getNamedItem(String name)(Code) | | This method gets the item having the given name.
Parameters: name - - the name used to look up the item the item retrieved |
item | public Node item(int index)(Code) | | This method gets the item at the index position.
Parameters: index - - the index to retrieve the item from the item retrieved |
|
|