org.kde.koala
public class CSSValueList extends CSSValue
CSSValueList
interface provides the absraction
of an ordered collection of CSS values.UNKNOWN: The CSSValueList
interface provides the absraction of an ordered collection of CSS values.
Constructor Summary | |
---|---|
protected | CSSValueList(Class dummy) |
CSSValueList() | |
CSSValueList(CSSValueList other) | |
CSSValueList(CSSValue other) |
Method Summary | |
---|---|
CSSValue | item(long index)
Used to retrieve a CSS rule by ordinal index. |
long | length()
The number of CSSValue s in the list. |
Parameters: index Index into the collection.
Returns: The style rule at the index
position in
the CSSValueList
, or null
if
that is not valid index.
UNKNOWN: Used to retrieve a CSS rule by ordinal index.
CSSValue
s in the list. The range
of valid values indices is 0
to length-1
inclusive.UNKNOWN: The number of CSSValue
s in the list.