summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSRuleList.java
blob: 1887cc58c23da17469f0b6c224cba24a41059b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 The <code>CSSRuleList</code> interface provides the abstraction
 of an ordered collection of CSS rules.
 		@short    The <code>CSSRuleList</code> interface provides the abstraction  of an ordered collection of CSS rules.

*/
public class CSSRuleList implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected CSSRuleList(Class dummy){}

	public CSSRuleList() {
		newCSSRuleList();
	}
	private native void newCSSRuleList();
	public CSSRuleList(CSSRuleList other) {
		newCSSRuleList(other);
	}
	private native void newCSSRuleList(CSSRuleList other);
	// DOM::CSSRuleList* CSSRuleList(DOM::CSSRuleListImpl* arg1); >>>> NOT CONVERTED
	// DOM::CSSRuleList* CSSRuleList(DOM::StyleListImpl* arg1); >>>> NOT CONVERTED
	/**	
		 The number of <code>CSSRule</code> s in the list. The range
		 of valid child rule indices is <code>0</code> to
		 <code>length-1</code> inclusive.
			     		@short    The number of <code>CSSRule</code> s in the list.
	*/
	public native long length();
	/**	
		 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.
			@param index Index into the collection
			     		@return The style rule at the <code>index</code> position in
 the <code>CSSRuleList</code> , or <code>null</code> if that
 is not a valid index.

		@short    Used to retrieve a CSS rule by ordinal index.
	*/
	public native CSSRule item(long index);
	/**	
			 not part of the DOM
		     		@short
	*/
	// DOM::CSSRuleListImpl* handle(); >>>> NOT CONVERTED
	public native boolean isNull();
}