summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLMetaElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLMetaElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLMetaElement.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLMetaElement.java b/kdejava/koala/org/kde/koala/HTMLMetaElement.java
deleted file mode 100644
index 3a586633..00000000
--- a/kdejava/koala/org/kde/koala/HTMLMetaElement.java
+++ /dev/null
@@ -1,82 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-
-/**
-
- This contains generic meta-information about the document. See the
- <a
- href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-META">
- META element definition </a> in HTML 4.0.
- @short This contains generic meta-information about the document.
-
-*/
-public class HTMLMetaElement extends HTMLElement {
- protected HTMLMetaElement(Class dummy){super((Class) null);}
- public HTMLMetaElement() {
- super((Class) null);
- newHTMLMetaElement();
- }
- private native void newHTMLMetaElement();
- public HTMLMetaElement(HTMLMetaElement other) {
- super((Class) null);
- newHTMLMetaElement(other);
- }
- private native void newHTMLMetaElement(HTMLMetaElement other);
- public HTMLMetaElement(Node other) {
- super((Class) null);
- newHTMLMetaElement(other);
- }
- private native void newHTMLMetaElement(Node other);
- /**
- Associated information. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-content">
- content attribute definition </a> in HTML 4.0.
- @short Associated information.
- */
- public native String content();
- /**
- see content
- @short see content
- */
- public native void setContent(String arg1);
- /**
- HTTP response header name. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-http-equiv">
- http-equiv attribute definition </a> in HTML 4.0.
- @short HTTP response header name.
- */
- public native String httpEquiv();
- /**
- see httpEquiv
- @short see httpEquiv
- */
- public native void setHttpEquiv(String arg1);
- /**
- Meta information name. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-name-META">
- name attribute definition </a> in HTML 4.0.
- @short Meta information name.
- */
- public native String name();
- /**
- see name
- @short see name
- */
- public native void setName(String arg1);
- /**
- Select form of content. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-scheme">
- scheme attribute definition </a> in HTML 4.0.
- @short Select form of content.
- */
- public native String scheme();
- /**
- see scheme
- @short see scheme
- */
- public native void setScheme(String arg1);
- // DOM::HTMLMetaElement* HTMLMetaElement(DOM::HTMLMetaElementImpl* arg1); >>>> NOT CONVERTED
-}