org.kde.koala

Class CSSValueList

public class CSSValueList extends CSSValue

The 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
CSSValueitem(long index)
Used to retrieve a CSS rule by ordinal index.
longlength()
The number of CSSValue s in the list.

Constructor Detail

CSSValueList

protected CSSValueList(Class dummy)

CSSValueList

public CSSValueList()

CSSValueList

public CSSValueList(CSSValueList other)

CSSValueList

public CSSValueList(CSSValue other)

Method Detail

item

public CSSValue item(long index)
Used to retrieve a CSS rule by ordinal index. The order in this collection represents the order of the values in the CSS style property.

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.

length

public long length()
The number of 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.