summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSCharsetRule.java
blob: d384b9eb4c89c9e472804a97de53e7da69008001 (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
//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);
}