summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSValue.java
blob: b933a7ab65034ddd90fb3a141197fb063ee8b809 (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>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();
}