summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CSSStyleRule.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/CSSStyleRule.java')
-rw-r--r--kdejava/koala/org/kde/koala/CSSStyleRule.java52
1 files changed, 0 insertions, 52 deletions
diff --git a/kdejava/koala/org/kde/koala/CSSStyleRule.java b/kdejava/koala/org/kde/koala/CSSStyleRule.java
deleted file mode 100644
index bb22489c..00000000
--- a/kdejava/koala/org/kde/koala/CSSStyleRule.java
+++ /dev/null
@@ -1,52 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-
-/**
-
- The <code>CSSStyleRule</code> interface represents a single <a
- href="http://www.w3.org/TR/REC-CSS2/syndata.html#q8"> rule set </a>
- in a CSS style sheet.
- @short The <code>CSSStyleRule</code> interface represents a single <a href="http://www.
-
-*/
-public class CSSStyleRule extends CSSRule {
- protected CSSStyleRule(Class dummy){super((Class) null);}
- public CSSStyleRule() {
- super((Class) null);
- newCSSStyleRule();
- }
- private native void newCSSStyleRule();
- public CSSStyleRule(CSSStyleRule other) {
- super((Class) null);
- newCSSStyleRule(other);
- }
- private native void newCSSStyleRule(CSSStyleRule other);
- public CSSStyleRule(CSSRule other) {
- super((Class) null);
- newCSSStyleRule(other);
- }
- private native void newCSSStyleRule(CSSRule other);
- // DOM::CSSStyleRule* CSSStyleRule(DOM::CSSStyleRuleImpl* arg1); >>>> NOT CONVERTED
- /**
- The textual representation of the <a
- href="http://www.w3.org/TR/REC-CSS2/selector.html"> selector
- </a> for the rule set. The implementation may have stripped out
- insignificant whitespace while parsing the selector.
- @short The textual representation of the <a href="http://www.
- */
- public native String selectorText();
- /**
- see selectorText
- @short see selectorText
- */
- public native void setSelectorText(String arg1);
- /**
- The <a href="http://www.w3.org/TR/REC-CSS2/syndata.html#q8">
- declaration-block </a> of this rule set.
- @short The <a href="http://www.
- */
- public native CSSStyleDeclaration style();
-}