summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLTableColElement.java
blob: d8875248940e87fa1927ede8a2a94872a62c357b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 Regroups the <code>COL</code> and <code>COLGROUP</code>
 elements. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-COL">
 COL element definition </a> in HTML 4.0.
 		@short    Regroups the <code>COL</code> and <code>COLGROUP</code>  elements.

*/
public class HTMLTableColElement extends HTMLElement  {
	protected HTMLTableColElement(Class dummy){super((Class) null);}
	public HTMLTableColElement() {
		super((Class) null);
		newHTMLTableColElement();
	}
	private native void newHTMLTableColElement();
	public HTMLTableColElement(HTMLTableColElement other) {
		super((Class) null);
		newHTMLTableColElement(other);
	}
	private native void newHTMLTableColElement(HTMLTableColElement other);
	public HTMLTableColElement(Node other) {
		super((Class) null);
		newHTMLTableColElement(other);
	}
	private native void newHTMLTableColElement(Node other);
	/**	
		 Horizontal alignment of cell data in column. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-TD">
		 align attribute definition </a> in HTML 4.0.
			     		@short    Horizontal alignment of cell data in column.
	*/
	public native String align();
	/**	
		 see align
		     		@short    see align
	*/
	public native void setAlign(String arg1);
	/**	
		 Alignment character for cells in a column. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-char">
		 char attribute definition </a> in HTML 4.0.
			     		@short    Alignment character for cells in a column.
	*/
	public native String ch();
	/**	
		 see ch
		     		@short    see ch
	*/
	public native void setCh(String arg1);
	/**	
		 Offset of alignment character. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-charoff">
		 charoff attribute definition </a> in HTML 4.0.
			     		@short    Offset of alignment character.
	*/
	public native String chOff();
	/**	
		 see chOff
		     		@short    see chOff
	*/
	public native void setChOff(String arg1);
	/**	
		 Indicates the number of columns in a group or affected by a
		 grouping. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-span-COL">
		 span attribute definition </a> in HTML 4.0.
			     		@short    Indicates the number of columns in a group or affected by a  grouping.
	*/
	public native long span();
	/**	
		 see span
		     		@short    see span
	*/
	public native void setSpan(long arg1);
	/**	
		 Vertical alignment of cell data in column. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-valign">
		 valign attribute definition </a> in HTML 4.0.
			     		@short    Vertical alignment of cell data in column.
	*/
	public native String vAlign();
	/**	
		 see vAlign
		     		@short    see vAlign
	*/
	public native void setVAlign(String arg1);
	/**	
		 Default column width. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-width-COL">
		 width attribute definition </a> in HTML 4.0.
			     		@short    Default column width.
	*/
	public native String width();
	/**	
		 see width
		     		@short    see width
	*/
	public native void setWidth(String arg1);
	// DOM::HTMLTableColElement* HTMLTableColElement(DOM::HTMLTableColElementImpl* arg1); >>>> NOT CONVERTED
}