summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLMapElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLMapElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLMapElement.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLMapElement.java b/kdejava/koala/org/kde/koala/HTMLMapElement.java
new file mode 100644
index 00000000..7b542b9e
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLMapElement.java
@@ -0,0 +1,50 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Client-side image map. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-MAP">
+ MAP element definition </a> in HTML 4.0.
+ @short Client-side image map.
+
+*/
+public class HTMLMapElement extends HTMLElement {
+ protected HTMLMapElement(Class dummy){super((Class) null);}
+ public HTMLMapElement() {
+ super((Class) null);
+ newHTMLMapElement();
+ }
+ private native void newHTMLMapElement();
+ public HTMLMapElement(HTMLMapElement other) {
+ super((Class) null);
+ newHTMLMapElement(other);
+ }
+ private native void newHTMLMapElement(HTMLMapElement other);
+ public HTMLMapElement(Node other) {
+ super((Class) null);
+ newHTMLMapElement(other);
+ }
+ private native void newHTMLMapElement(Node other);
+ /**
+ The list of areas defined for the image map.
+ @short The list of areas defined for the image map.
+ */
+ public native HTMLCollection areas();
+ /**
+ Names the map (for use with <code>usemap</code> ). See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-name-MAP">
+ name attribute definition </a> in HTML 4.0.
+ @short Names the map (for use with <code>usemap</code> ).
+ */
+ public native String name();
+ /**
+ see name
+ @short see name
+ */
+ public native void setName(String arg1);
+ // DOM::HTMLMapElement* HTMLMapElement(DOM::HTMLMapElementImpl* arg1); >>>> NOT CONVERTED
+}