All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.NameList Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2003 World Wide Web Consortium,
 *
 * (Massachusetts Institute of Technology, European Research Consortium for
 * Informatics and Mathematics, Keio University). All Rights Reserved. This
 * work is distributed under the W3C(r) Software License [1] in the hope that
 * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
 */

package org.w3c.dom;

/** 
 * DOM Level 3 WD Experimental:
 * The DOM Level 3 specification is at the stage 
 * of Working Draft, which represents work in 
 * progress and thus may be updated, replaced, 
 * or obsoleted by other documents at any time. 
 * 
 *  The NameList interface provides the abstraction of an ordered 
 * collection of parallel pairs of name and namespace values, without 
 * defining or constraining how this collection is implemented. The items in 
 * the NameList are accessible via an integral index, starting 
 * from 0. 
 * 

See also the Document Object Model (DOM) Level 3 Core Specification. * @since DOM Level 3 */ public interface NameList { /** * Returns the indexth name item in the collection. * @param index Index into the collection. * @return The DOMString at the indexth * position in the NameList. * @exception DOMException * INDEX_SIZE_ERR: If index is greater than or equal to * the number of nodes in the list. */ public String getName(int index) throws DOMException; /** * Returns the indexth namespaceURI item in the collection. * @param index Index into the collection. * @return The DOMString at the indexth * position in the NameList. * @exception DOMException * INDEX_SIZE_ERR: If index is greater than or equal to * the number of nodes in the list. */ public String getNamespaceURI(int index) throws DOMException; /** * The number of pairs (name and namespaceURI) in the list. The range of * valid child node indices is 0 to length-1 inclusive. */ public int getLength(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy