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, 0 insertions, 50 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLMapElement.java b/kdejava/koala/org/kde/koala/HTMLMapElement.java
deleted file mode 100644
index 7b542b9e..00000000
--- a/kdejava/koala/org/kde/koala/HTMLMapElement.java
+++ /dev/null
@@ -1,50 +0,0 @@
-//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
-}