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/tdejava/koala/org/trinitydesktop/koala/HTMLDirectoryElement.java

48 lines
1.5 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;
/**
Directory list. See the <a
href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-DIR">
DIR element definition </a> in HTML 4.0. This element is deprecated
in HTML 4.0.
@short Directory list.
*/
public class HTMLDirectoryElement extends HTMLElement {
protected HTMLDirectoryElement(Class dummy){super((Class) null);}
public HTMLDirectoryElement() {
super((Class) null);
newHTMLDirectoryElement();
}
private native void newHTMLDirectoryElement();
public HTMLDirectoryElement(HTMLDirectoryElement other) {
super((Class) null);
newHTMLDirectoryElement(other);
}
private native void newHTMLDirectoryElement(HTMLDirectoryElement other);
public HTMLDirectoryElement(Node other) {
super((Class) null);
newHTMLDirectoryElement(other);
}
private native void newHTMLDirectoryElement(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::HTMLDirectoryElement* HTMLDirectoryElement(DOM::HTMLDirectoryElementImpl* arg1); >>>> NOT CONVERTED
}