API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom. NameList View Source
Author(s)
Since
DOM Level 3
Version
Serial
Hierarchy
 NameList
Subinterfaces
Description
public interface NameList
  The NameList interface provides the abstraction of an ordered collection of parallel pairs of name and namespace values (which could be null values), without defining or constraining how this collection is implemented.
See also:   
Methods
Hide/Show inherited methods
public boolean contains (String str)
  Test if a name is part of this NameList.
public boolean containsNS (String namespaceURI, String name)
  Test if the pair namespaceURI/name is part of this NameList.
public int getLength ()
  The number of pairs (name and namespaceURI) in the list.
public String getName (int index)
  Returns the indexth name item in the collection.
public String getNamespaceURI (int index)
  Returns the indexth namespaceURI item in the collection.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar