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/HTMLMenuElement.java

48 lines
1.4 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Menu list. See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-MENU">
MENU element definition </a> in HTML 4.0. This element is
deprecated in HTML 4.0.
@short Menu list.
*/
public class HTMLMenuElement extends HTMLElement {
protected HTMLMenuElement(Class dummy){super((Class) null);}
public HTMLMenuElement() {
super((Class) null);
newHTMLMenuElement();
}
private native void newHTMLMenuElement();
public HTMLMenuElement(HTMLMenuElement other) {
super((Class) null);
newHTMLMenuElement(other);
}
private native void newHTMLMenuElement(HTMLMenuElement other);
public HTMLMenuElement(Node other) {
super((Class) null);
newHTMLMenuElement(other);
}
private native void newHTMLMenuElement(Node other);
/**
Reduce spacing between list items. See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-compact">
compact attribute definition </a> in HTML 4.0. This attribute
is deprecated in HTML 4.0.
@short Reduce spacing between list items.
*/
public native boolean compact();
/**
see compact
@short see compact
*/
public native void setCompact(boolean arg1);
// DOM::HTMLMenuElement* HTMLMenuElement(DOM::HTMLMenuElementImpl* arg1); >>>> NOT CONVERTED
}