org.kde.koala
Class CSSRuleList

java.lang.Object
  extended by org.kde.koala.CSSRuleList
All Implemented Interfaces:
org.kde.qt.QtSupport

public class CSSRuleList
extends java.lang.Object
implements org.kde.qt.QtSupport

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


Constructor Summary
  CSSRuleList()
           
protected CSSRuleList(java.lang.Class dummy)
           
  CSSRuleList(CSSRuleList other)
           
 
Method Summary
 boolean isNull()
          not part of the DOM
 CSSRule item(long index)
          Used to retrieve a CSS rule by ordinal index.
 long length()
          The number of CSSRule s in the list.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CSSRuleList

protected CSSRuleList(java.lang.Class dummy)

CSSRuleList

public CSSRuleList()

CSSRuleList

public CSSRuleList(CSSRuleList other)
Method Detail

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.


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.

isNull

public boolean isNull()
not part of the DOM