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/CSSStyleRule.java

53 lines
1.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
The <code>CSSStyleRule</code> interface represents a single <a
href="http://www.w3.org/TR/REC-CSS2/syndata.html#q8"> rule set </a>
in a CSS style sheet.
@short The <code>CSSStyleRule</code> interface represents a single <a href="http://www.
*/
public class CSSStyleRule extends CSSRule {
protected CSSStyleRule(Class dummy){super((Class) null);}
public CSSStyleRule() {
super((Class) null);
newCSSStyleRule();
}
private native void newCSSStyleRule();
public CSSStyleRule(CSSStyleRule other) {
super((Class) null);
newCSSStyleRule(other);
}
private native void newCSSStyleRule(CSSStyleRule other);
public CSSStyleRule(CSSRule other) {
super((Class) null);
newCSSStyleRule(other);
}
private native void newCSSStyleRule(CSSRule other);
// DOM::CSSStyleRule* CSSStyleRule(DOM::CSSStyleRuleImpl* arg1); >>>> NOT CONVERTED
/**
The textual representation of the <a
href="http://www.w3.org/TR/REC-CSS2/selector.html"> selector
</a> for the rule set. The implementation may have stripped out
insignificant whitespace while parsing the selector.
@short The textual representation of the <a href="http://www.
*/
public native String selectorText();
/**
see selectorText
@short see selectorText
*/
public native void setSelectorText(String arg1);
/**
The <a href="http://www.w3.org/TR/REC-CSS2/syndata.html#q8">
declaration-block </a> of this rule set.
@short The <a href="http://www.
*/
public native CSSStyleDeclaration style();
}