blob: 224606795023e4905e67afdec81ee45bc35531d9 (
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
|
//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
}
|