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

47 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;
/**
Table caption See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-CAPTION">
CAPTION element definition </a> in HTML 4.0.
@short Table caption See the <a href="http://www.
*/
public class HTMLTableCaptionElement extends HTMLElement {
protected HTMLTableCaptionElement(Class dummy){super((Class) null);}
public HTMLTableCaptionElement() {
super((Class) null);
newHTMLTableCaptionElement();
}
private native void newHTMLTableCaptionElement();
public HTMLTableCaptionElement(HTMLTableCaptionElement other) {
super((Class) null);
newHTMLTableCaptionElement(other);
}
private native void newHTMLTableCaptionElement(HTMLTableCaptionElement other);
public HTMLTableCaptionElement(Node other) {
super((Class) null);
newHTMLTableCaptionElement(other);
}
private native void newHTMLTableCaptionElement(Node other);
/**
Caption alignment with respect to the table. See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-CAPTION">
align attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Caption alignment with respect to the table.
*/
public native String align();
/**
see align
@short see align
*/
public native void setAlign(String arg1);
// DOM::HTMLTableCaptionElement* HTMLTableCaptionElement(DOM::HTMLTableCaptionElementImpl* arg1); >>>> NOT CONVERTED
}