blob: bb22489c871f668f54825fd0e73ee15b5399701d (
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
52
|
//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();
}
|