You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLMapElement.java

51 lines
1.5 KiB

//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
}