summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLScriptElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLScriptElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLScriptElement.java112
1 files changed, 112 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLScriptElement.java b/kdejava/koala/org/kde/koala/HTMLScriptElement.java
new file mode 100644
index 00000000..4ad68792
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLScriptElement.java
@@ -0,0 +1,112 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Script statements. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/scripts.html#edef-SCRIPT">
+ SCRIPT element definition </a> in HTML 4.0.
+ @short Script statements.
+
+*/
+public class HTMLScriptElement extends HTMLElement {
+ protected HTMLScriptElement(Class dummy){super((Class) null);}
+ public HTMLScriptElement() {
+ super((Class) null);
+ newHTMLScriptElement();
+ }
+ private native void newHTMLScriptElement();
+ public HTMLScriptElement(HTMLScriptElement other) {
+ super((Class) null);
+ newHTMLScriptElement(other);
+ }
+ private native void newHTMLScriptElement(HTMLScriptElement other);
+ public HTMLScriptElement(Node other) {
+ super((Class) null);
+ newHTMLScriptElement(other);
+ }
+ private native void newHTMLScriptElement(Node other);
+ /**
+ The script content of the element.
+ @short The script content of the element.
+ */
+ public native String text();
+ /**
+ see text
+ @short see text
+ */
+ public native void setText(String arg1);
+ /**
+ Reserved for future use.
+ @short Reserved for future use.
+ */
+ public native String htmlFor();
+ /**
+ see htmlFor
+ @short see htmlFor
+ */
+ public native void setHtmlFor(String arg1);
+ /**
+ Reserved for future use.
+ @short Reserved for future use.
+ */
+ public native String event();
+ /**
+ see event
+ @short see event
+ */
+ public native void setEvent(String arg1);
+ /**
+ The character encoding of the linked resource. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-charset">
+ charset attribute definition </a> in HTML 4.0.
+ @short The character encoding of the linked resource.
+ */
+ public native String charset();
+ /**
+ see charset
+ @short see charset
+ */
+ public native void setCharset(String arg1);
+ /**
+ Indicates that the user agent can defer processing of the
+ script. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-defer">
+ defer attribute definition </a> in HTML 4.0.
+ @short Indicates that the user agent can defer processing of the script.
+ */
+ public native boolean defer();
+ /**
+ see defer
+ @short see defer
+ */
+ public native void setDefer(boolean arg1);
+ /**
+ URI designating an external script. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-src-SCRIPT">
+ src attribute definition </a> in HTML 4.0.
+ @short URI designating an external script.
+ */
+ public native String src();
+ /**
+ see src
+ @short see src
+ */
+ public native void setSrc(String arg1);
+ /**
+ The content type of the script language. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-type-SCRIPT">
+ type attribute definition </a> in HTML 4.0.
+ @short The content type of the script language.
+ */
+ public native String type();
+ /**
+ see type
+ @short see type
+ */
+ public native void setType(String arg1);
+ // DOM::HTMLScriptElement* HTMLScriptElement(DOM::HTMLScriptElementImpl* arg1); >>>> NOT CONVERTED
+}