summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSValueList.java
blob: 4a4fee003a86292a4ccf96ba00e0c706f4f7f56b (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

 The <code>CSSValueList</code> interface provides the absraction
 of an ordered collection of CSS values.
 		@short    The <code>CSSValueList</code> interface provides the absraction  of an ordered collection of CSS values.

*/
public class CSSValueList extends CSSValue  {
	protected CSSValueList(Class dummy){super((Class) null);}
	public CSSValueList() {
		super((Class) null);
		newCSSValueList();
	}
	private native void newCSSValueList();
	public CSSValueList(CSSValueList other) {
		super((Class) null);
		newCSSValueList(other);
	}
	private native void newCSSValueList(CSSValueList other);
	public CSSValueList(CSSValue other) {
		super((Class) null);
		newCSSValueList(other);
	}
	private native void newCSSValueList(CSSValue other);
	// DOM::CSSValueList* CSSValueList(DOM::CSSValueListImpl* arg1); >>>> NOT CONVERTED
	/**	
		 The number of <code>CSSValue</code> s in the list. The range
		 of valid values indices is <code>0</code> to <code>length-1</code>
		 inclusive.
			     		@short    The number of <code>CSSValue</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 values in the CSS style
		 property.
			@param index Index into the collection.
			     		@return The style rule at the <code>index</code> position in
 the <code>CSSValueList</code> , or <code>null</code> if
 that is not valid index.

		@short    Used to retrieve a CSS rule by ordinal index.
	*/
	public native CSSValue item(long index);
}