summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSValueList.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/CSSValueList.java')
-rw-r--r--kdejava/koala/org/kde/koala/CSSValueList.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/CSSValueList.java b/kdejava/koala/org/kde/koala/CSSValueList.java
new file mode 100644
index 00000000..4a4fee00
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/CSSValueList.java
@@ -0,0 +1,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);
+}