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, 0 insertions, 51 deletions
diff --git a/kdejava/koala/org/kde/koala/CSSValueList.java b/kdejava/koala/org/kde/koala/CSSValueList.java
deleted file mode 100644
index 4a4fee00..00000000
--- a/kdejava/koala/org/kde/koala/CSSValueList.java
+++ /dev/null
@@ -1,51 +0,0 @@
-//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);
-}