summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/CSSValue.java')
-rw-r--r--kdejava/koala/org/kde/koala/CSSValue.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/CSSValue.java b/kdejava/koala/org/kde/koala/CSSValue.java
new file mode 100644
index 00000000..b933a7ab
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/CSSValue.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>CSSValue</code> interface represents a simple or a
+ complexe value.
+ @short The <code>CSSValue</code> interface represents a simple or a complexe value.
+
+*/
+public class CSSValue implements QtSupport {
+ private long _qt;
+ private boolean _allocatedInJavaWorld = true;
+ protected CSSValue(Class dummy){}
+
+ public CSSValue() {
+ newCSSValue();
+ }
+ private native void newCSSValue();
+ public CSSValue(CSSValue other) {
+ newCSSValue(other);
+ }
+ private native void newCSSValue(CSSValue other);
+ // DOM::CSSValue* CSSValue(DOM::CSSValueImpl* arg1); >>>> NOT CONVERTED
+ /**
+ A string representation of the current value.
+ @short A string representation of the current value.
+ */
+ public native String cssText();
+ /**
+ see cssText
+ @short see cssText
+ */
+ public native void setCssText(String arg1);
+ /**
+ A code defining the type of the value as defined above.
+ @short A code defining the type of the value as defined above.
+ */
+ public native short cssValueType();
+ /**
+ not part of the DOM
+ @short
+ */
+ public native boolean isCSSValueList();
+ public native boolean isCSSPrimitiveValue();
+ // DOM::CSSValueImpl* handle(); >>>> NOT CONVERTED
+ public native boolean isNull();
+}