//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; /** The CSSCharsetRule interface a \@charset rule in a CSS style sheet. A \@charset rule can be used to define the encoding of the style sheet. @short The CSSCharsetRule interface a \@charset rule 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 \@charset rule. @short The encoding information used in this \@charset rule. */ public native String encoding(); /** see encoding @short see encoding */ public native void setEncoding(String arg1); }