summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/CSSFontFaceRule.java
blob: 230390b947eb24948b6ef8c084bd7b05d040767b (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;

/**

 The <code>CSSFontFaceRule</code> interface represents a <a
 href="http://www.w3.org/TR/REC-CSS2/fonts.html#font-descriptions">
 <code>\@font-face</code> rule </a> in a CSS style sheet. The <code>\@font-face</code>
 rule is used to hold a set of font descriptions.
 		@short    The <code>CSSFontFaceRule</code> interface represents a <a  href="http://www.

*/
public class CSSFontFaceRule extends CSSRule  {
	protected CSSFontFaceRule(Class dummy){super((Class) null);}
	public CSSFontFaceRule() {
		super((Class) null);
		newCSSFontFaceRule();
	}
	private native void newCSSFontFaceRule();
	public CSSFontFaceRule(CSSFontFaceRule other) {
		super((Class) null);
		newCSSFontFaceRule(other);
	}
	private native void newCSSFontFaceRule(CSSFontFaceRule other);
	public CSSFontFaceRule(CSSRule other) {
		super((Class) null);
		newCSSFontFaceRule(other);
	}
	private native void newCSSFontFaceRule(CSSRule other);
	// DOM::CSSFontFaceRule* CSSFontFaceRule(DOM::CSSFontFaceRuleImpl* arg1); >>>> NOT CONVERTED
	/**
		 The <a href="http://www.w3.org/TR/REC-CSS2/syndata.html#q8">
		 declaration-block </a> of this rule.
			     		@short    The <a href="http://www.
	*/
	public native CSSStyleDeclaration style();
}