summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLParamElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLParamElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLParamElement.java83
1 files changed, 83 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLParamElement.java b/kdejava/koala/org/kde/koala/HTMLParamElement.java
new file mode 100644
index 00000000..f72bed39
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLParamElement.java
@@ -0,0 +1,83 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Parameters fed to the <code>OBJECT</code> element. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-PARAM">
+ PARAM element definition </a> in HTML 4.0.
+ @short Parameters fed to the <code>OBJECT</code> element.
+
+*/
+public class HTMLParamElement extends HTMLElement {
+ protected HTMLParamElement(Class dummy){super((Class) null);}
+ public HTMLParamElement() {
+ super((Class) null);
+ newHTMLParamElement();
+ }
+ private native void newHTMLParamElement();
+ public HTMLParamElement(HTMLParamElement other) {
+ super((Class) null);
+ newHTMLParamElement(other);
+ }
+ private native void newHTMLParamElement(HTMLParamElement other);
+ public HTMLParamElement(Node other) {
+ super((Class) null);
+ newHTMLParamElement(other);
+ }
+ private native void newHTMLParamElement(Node other);
+ /**
+ The name of a run-time parameter. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-name-PARAM">
+ name attribute definition </a> in HTML 4.0.
+ @short The name of a run-time parameter.
+ */
+ public native String name();
+ /**
+ see name
+ @short see name
+ */
+ public native void setName(String arg1);
+ /**
+ Content type for the <code>value</code> attribute when
+ <code>valuetype</code> has the value "ref". See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-type-PARAM">
+ type attribute definition </a> in HTML 4.0.
+ @short Content type for the <code>value</code> attribute when <code>valuetype</code> has the value "ref".
+ */
+ public native String type();
+ /**
+ see type
+ @short see type
+ */
+ public native void setType(String arg1);
+ /**
+ The value of a run-time parameter. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-value-PARAM">
+ value attribute definition </a> in HTML 4.0.
+ @short The value of a run-time parameter.
+ */
+ public native String value();
+ /**
+ see value
+ @short see value
+ */
+ public native void setValue(String arg1);
+ /**
+ Information about the meaning of the <code>value</code>
+ attribute value. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-valuetype">
+ valuetype attribute definition </a> in HTML 4.0.
+ @short Information about the meaning of the <code>value</code> attribute value.
+ */
+ public native String valueType();
+ /**
+ see valueType
+ @short see valueType
+ */
+ public native void setValueType(String arg1);
+ // DOM::HTMLParamElement* HTMLParamElement(DOM::HTMLParamElementImpl* arg1); >>>> NOT CONVERTED
+}