summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLMapElement.java
blob: 7b542b9e5e01246be6c8ec21fe6a9b1ef8bfa4d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
}