summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLStyleElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLStyleElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLStyleElement.java75
1 files changed, 0 insertions, 75 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLStyleElement.java b/kdejava/koala/org/kde/koala/HTMLStyleElement.java
deleted file mode 100644
index 060dd1a1..00000000
--- a/kdejava/koala/org/kde/koala/HTMLStyleElement.java
+++ /dev/null
@@ -1,75 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-
-/**
-
- Style information. A more detailed style sheet object model is
- planned to be defined in a separate document. See the <a
- href="http://www.w3.org/TR/REC-html40/present/styles.html#edef-STYLE">
- STYLE element definition </a> in HTML 4.0.
- @short Style information.
-
-*/
-public class HTMLStyleElement extends HTMLElement {
- protected HTMLStyleElement(Class dummy){super((Class) null);}
- public HTMLStyleElement() {
- super((Class) null);
- newHTMLStyleElement();
- }
- private native void newHTMLStyleElement();
- public HTMLStyleElement(HTMLStyleElement other) {
- super((Class) null);
- newHTMLStyleElement(other);
- }
- private native void newHTMLStyleElement(HTMLStyleElement other);
- public HTMLStyleElement(Node other) {
- super((Class) null);
- newHTMLStyleElement(other);
- }
- private native void newHTMLStyleElement(Node other);
- /**
- Enables/disables the style sheet.
- @short Enables/disables the style sheet.
- */
- public native boolean disabled();
- /**
- see disabled
- @short see disabled
- */
- public native void setDisabled(boolean arg1);
- /**
- Designed for use with one or more target media. See the <a
- href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-media">
- media attribute definition </a> in HTML 4.0.
- @short Designed for use with one or more target media.
- */
- public native String media();
- /**
- see media
- @short see media
- */
- public native void setMedia(String arg1);
- /**
- The style sheet language (Internet media type). See the <a
- href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-type-STYLE">
- type attribute definition </a> in HTML 4.0.
- @short The style sheet language (Internet media type).
- */
- public native String type();
- /**
- see type
- @short see type
- */
- public native void setType(String arg1);
- /**
- Introduced in DOM Level 2
- This method is from the LinkStyle interface
- The style sheet.
- @short Introduced in DOM Level 2 This method is from the LinkStyle interface
- */
- public native StyleSheet sheet();
- // DOM::HTMLStyleElement* HTMLStyleElement(DOM::HTMLStyleElementImpl* arg1); >>>> NOT CONVERTED
-}