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

45 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>CSSCharsetRule</code> interface a <a href=""> \@charset
rule </a> in a CSS style sheet. A <code>\@charset</code> rule can
be used to define the encoding of the style sheet.
@short The <code>CSSCharsetRule</code> interface a <a href=""> \@charset rule </a> in a CSS style sheet.
*/
public class CSSCharsetRule extends CSSRule {
protected CSSCharsetRule(Class dummy){super((Class) null);}
public CSSCharsetRule() {
super((Class) null);
newCSSCharsetRule();
}
private native void newCSSCharsetRule();
public CSSCharsetRule(CSSCharsetRule other) {
super((Class) null);
newCSSCharsetRule(other);
}
private native void newCSSCharsetRule(CSSCharsetRule other);
public CSSCharsetRule(CSSRule other) {
super((Class) null);
newCSSCharsetRule(other);
}
private native void newCSSCharsetRule(CSSRule other);
// DOM::CSSCharsetRule* CSSCharsetRule(DOM::CSSCharsetRuleImpl* arg1); >>>> NOT CONVERTED
/**
The encoding information used in this <code>\@charset</code>
rule.
@short The encoding information used in this <code>\@charset</code> rule.
*/
public native String encoding();
/**
see encoding
@short see encoding
*/
public native void setEncoding(String arg1);
}