org.kde.koala

Class CSSRuleList

public class CSSRuleList extends Object implements QtSupport

The CSSRuleList interface provides the abstraction of an ordered collection of CSS rules.

UNKNOWN: The CSSRuleList interface provides the abstraction of an ordered collection of CSS rules.

Constructor Summary
protected CSSRuleList(Class dummy)
CSSRuleList()
CSSRuleList(CSSRuleList other)
Method Summary
booleanisNull()
not part of the DOM
CSSRuleitem(long index)
Used to retrieve a CSS rule by ordinal index.
longlength()
The number of CSSRule s in the list.

Constructor Detail

CSSRuleList

protected CSSRuleList(Class dummy)

CSSRuleList

public CSSRuleList()

CSSRuleList

public CSSRuleList(CSSRuleList other)

Method Detail

isNull

public boolean isNull()
not part of the DOM

UNKNOWN:

item

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

Parameters: index Index into the collection

Returns: The style rule at the index position in the CSSRuleList , or null if that is not a valid index.

UNKNOWN: Used to retrieve a CSS rule by ordinal index.

length

public long length()
The number of CSSRule s in the list. The range of valid child rule indices is 0 to length-1 inclusive.

UNKNOWN: The number of CSSRule s in the list.