summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSFontFaceRule.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/CSSFontFaceRule.java')
-rw-r--r--kdejava/koala/org/kde/koala/CSSFontFaceRule.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/CSSFontFaceRule.java b/kdejava/koala/org/kde/koala/CSSFontFaceRule.java
new file mode 100644
index 00000000..3d9ccc89
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/CSSFontFaceRule.java
@@ -0,0 +1,40 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.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();
+}