summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLParamElement.java
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-08 20:06:00 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /kdejava/koala/org/kde/koala/HTMLParamElement.java
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLParamElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLParamElement.java83
1 files changed, 0 insertions, 83 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLParamElement.java b/kdejava/koala/org/kde/koala/HTMLParamElement.java
deleted file mode 100644
index f72bed39..00000000
--- a/kdejava/koala/org/kde/koala/HTMLParamElement.java
+++ /dev/null
@@ -1,83 +0,0 @@
-//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
-}