You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/CSSValue.java

52 lines
1.3 KiB

//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();
}