src/org/w3c/dom/NameList.java

Print this page
rev 602 : 8047723: @since tag cleanup in jaxp
Reviewed-by:


  31  * Copyright (c) 2004 World Wide Web Consortium,
  32  *
  33  * (Massachusetts Institute of Technology, European Research Consortium for
  34  * Informatics and Mathematics, Keio University). All Rights Reserved. This
  35  * work is distributed under the W3C(r) Software License [1] in the hope that
  36  * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
  37  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  38  *
  39  * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
  40  */
  41 
  42 package org.w3c.dom;
  43 
  44 /**
  45  *  The <code>NameList</code> interface provides the abstraction of an ordered
  46  * collection of parallel pairs of name and namespace values (which could be
  47  * null values), without defining or constraining how this collection is
  48  * implemented. The items in the <code>NameList</code> are accessible via an
  49  * integral index, starting from 0.
  50  * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
  51  * @since DOM Level 3
  52  */
  53 public interface NameList {
  54     /**
  55      *  Returns the <code>index</code>th name item in the collection.
  56      * @param index Index into the collection.
  57      * @return  The name at the <code>index</code>th position in the
  58      *   <code>NameList</code>, or <code>null</code> if there is no name for
  59      *   the specified index or if the index is out of range.
  60      */
  61     public String getName(int index);
  62 
  63     /**
  64      *  Returns the <code>index</code>th namespaceURI item in the collection.
  65      * @param index Index into the collection.
  66      * @return  The namespace URI at the <code>index</code>th position in the
  67      *   <code>NameList</code>, or <code>null</code> if there is no name for
  68      *   the specified index or if the index is out of range.
  69      */
  70     public String getNamespaceURI(int index);
  71 




  31  * Copyright (c) 2004 World Wide Web Consortium,
  32  *
  33  * (Massachusetts Institute of Technology, European Research Consortium for
  34  * Informatics and Mathematics, Keio University). All Rights Reserved. This
  35  * work is distributed under the W3C(r) Software License [1] in the hope that
  36  * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
  37  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  38  *
  39  * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
  40  */
  41 
  42 package org.w3c.dom;
  43 
  44 /**
  45  *  The <code>NameList</code> interface provides the abstraction of an ordered
  46  * collection of parallel pairs of name and namespace values (which could be
  47  * null values), without defining or constraining how this collection is
  48  * implemented. The items in the <code>NameList</code> are accessible via an
  49  * integral index, starting from 0.
  50  * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
  51  * @since 1.5, DOM Level 3
  52  */
  53 public interface NameList {
  54     /**
  55      *  Returns the <code>index</code>th name item in the collection.
  56      * @param index Index into the collection.
  57      * @return  The name at the <code>index</code>th position in the
  58      *   <code>NameList</code>, or <code>null</code> if there is no name for
  59      *   the specified index or if the index is out of range.
  60      */
  61     public String getName(int index);
  62 
  63     /**
  64      *  Returns the <code>index</code>th namespaceURI item in the collection.
  65      * @param index Index into the collection.
  66      * @return  The namespace URI at the <code>index</code>th position in the
  67      *   <code>NameList</code>, or <code>null</code> if there is no name for
  68      *   the specified index or if the index is out of range.
  69      */
  70     public String getNamespaceURI(int index);
  71