Package org.apache.batik.css.parser
Class CSSSelectorList
- java.lang.Object
-
- org.apache.batik.css.parser.CSSSelectorList
-
- All Implemented Interfaces:
org.w3c.css.sac.SelectorList
public class CSSSelectorList extends java.lang.Object implements org.w3c.css.sac.SelectorList
This class implements theSelectorList
interface.
-
-
Constructor Summary
Constructors Constructor Description CSSSelectorList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
append(org.w3c.css.sac.Selector item)
Appends an item to the list.int
getLength()
SAC: Returns the length of this selector listorg.w3c.css.sac.Selector
item(int index)
SAC: Returns the selector at the specified index, ornull
if this is not a valid index.
-
-
-
Method Detail
-
getLength
public int getLength()
SAC: Returns the length of this selector list- Specified by:
getLength
in interfaceorg.w3c.css.sac.SelectorList
-
item
public org.w3c.css.sac.Selector item(int index)
SAC: Returns the selector at the specified index, ornull
if this is not a valid index.- Specified by:
item
in interfaceorg.w3c.css.sac.SelectorList
-
append
public void append(org.w3c.css.sac.Selector item)
Appends an item to the list.
-
-