Class CSSSelectorList

java.lang.Object
org.apache.batik.css.parser.CSSSelectorList
All Implemented Interfaces:
org.w3c.css.sac.SelectorList

public class CSSSelectorList extends Object implements org.w3c.css.sac.SelectorList
This class implements the SelectorList interface.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected int
    The list length.
    protected org.w3c.css.sac.Selector[]
    The list.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    append(org.w3c.css.sac.Selector item)
    Appends an item to the list.
    int
    SAC: Returns the length of this selector list
    org.w3c.css.sac.Selector
    item(int index)
    SAC: Returns the selector at the specified index, or null if this is not a valid index.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • list

      protected org.w3c.css.sac.Selector[] list
      The list.
    • length

      protected int length
      The list length.
  • Constructor Details

    • CSSSelectorList

      public CSSSelectorList()
  • Method Details

    • getLength

      public int getLength()
      SAC: Returns the length of this selector list
      Specified by:
      getLength in interface org.w3c.css.sac.SelectorList
    • item

      public org.w3c.css.sac.Selector item(int index)
      SAC: Returns the selector at the specified index, or null if this is not a valid index.
      Specified by:
      item in interface org.w3c.css.sac.SelectorList
    • append

      public void append(org.w3c.css.sac.Selector item)
      Appends an item to the list.