Class DOMStringListImpl

  • All Implemented Interfaces:
    org.w3c.dom.DOMStringList

    public class DOMStringListImpl
    extends java.lang.Object
    implements org.w3c.dom.DOMStringList
    DOM Level 3 This class implements the DOM Level 3 Core interface DOMStringList.

    INTERNAL:

    Usage of this class is not supported. It may be altered or removed at any time.
    Author:
    Neil Delima, IBM
    • Constructor Summary

      Constructors 
      Constructor Description
      DOMStringListImpl()
      Construct an empty list of DOMStringListImpl
      DOMStringListImpl​(java.util.ArrayList params)
      Construct a DOMStringListImpl from an ArrayList
      DOMStringListImpl​(java.util.Vector params)
      Construct a DOMStringListImpl from a Vector
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(java.lang.String param)
      DOM Internal: Add a DOMString to the list.
      boolean contains​(java.lang.String param)  
      int getLength()  
      java.lang.String item​(int index)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DOMStringListImpl

        public DOMStringListImpl()
        Construct an empty list of DOMStringListImpl
      • DOMStringListImpl

        public DOMStringListImpl​(java.util.ArrayList params)
        Construct a DOMStringListImpl from an ArrayList
      • DOMStringListImpl

        public DOMStringListImpl​(java.util.Vector params)
        Construct a DOMStringListImpl from a Vector
    • Method Detail

      • item

        public java.lang.String item​(int index)
        Specified by:
        item in interface org.w3c.dom.DOMStringList
        See Also:
        DOMStringList.item(int)
      • getLength

        public int getLength()
        Specified by:
        getLength in interface org.w3c.dom.DOMStringList
        See Also:
        DOMStringList.getLength()
      • contains

        public boolean contains​(java.lang.String param)
        Specified by:
        contains in interface org.w3c.dom.DOMStringList
        See Also:
        DOMStringList.contains(String)
      • add

        public void add​(java.lang.String param)
        DOM Internal: Add a DOMString to the list.
        Parameters:
        param - A string to add to the list