summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLTableCellElement.java
blob: 3802b59774eb147489df14ce4e4eb9e0dce7be75 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

 The object used to represent the <code>TH</code> and <code>TD</code>
 elements. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-TD">
 TD element definition </a> in HTML 4.0.
 		@short    The object used to represent the <code>TH</code> and <code>TD</code>  elements.

*/
public class HTMLTableCellElement extends HTMLElement  {
	protected HTMLTableCellElement(Class dummy){super((Class) null);}
	public HTMLTableCellElement() {
		super((Class) null);
		newHTMLTableCellElement();
	}
	private native void newHTMLTableCellElement();
	public HTMLTableCellElement(HTMLTableCellElement other) {
		super((Class) null);
		newHTMLTableCellElement(other);
	}
	private native void newHTMLTableCellElement(HTMLTableCellElement other);
	public HTMLTableCellElement(Node other) {
		super((Class) null);
		newHTMLTableCellElement(other);
	}
	private native void newHTMLTableCellElement(Node other);
	/**	
		 The index of this cell in the row.
			     		@short    The index of this cell in the row.
	*/
	public native long cellIndex();
	/**	
		 see cellIndex
			 This function is obsolete - the cellIndex property is actually supposed to be read-only
		 (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html)
		     		@short    see cellIndex
	*/
	public native void setCellIndex(long arg1);
	/**	
		 Abbreviation for header cells. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-abbr">
		 abbr attribute definition </a> in HTML 4.0.
			     		@short    Abbreviation for header cells.
	*/
	public native String abbr();
	/**	
		 see abbr
		     		@short    see abbr
	*/
	public native void setAbbr(String arg1);
	/**	
		 Horizontal alignment of data in cell. 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 data in cell.
	*/
	public native String align();
	/**	
		 see align
		     		@short    see align
	*/
	public native void setAlign(String arg1);
	/**	
		 Names group of related headers. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-axis">
		 axis attribute definition </a> in HTML 4.0.
			     		@short    Names group of related headers.
	*/
	public native String axis();
	/**	
		 see axis
		     		@short    see axis
	*/
	public native void setAxis(String arg1);
	/**	
		 Cell background color. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor">
		 bgcolor attribute definition </a> in HTML 4.0. This attribute
		 is deprecated in HTML 4.0.
			     		@short    Cell background color.
	*/
	public native String bgColor();
	/**	
		 see bgColor
		     		@short    see bgColor
	*/
	public native void setBgColor(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);
	/**	
		 Number of columns spanned by cell. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-colspan">
		 colspan attribute definition </a> in HTML 4.0.
			     		@short    Number of columns spanned by cell.
	*/
	public native long colSpan();
	/**	
		 see colSpan
		     		@short    see colSpan
	*/
	public native void setColSpan(long arg1);
	/**	
		 List of <code>id</code> attribute values for header cells.
		 See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-headers">
		 headers attribute definition </a> in HTML 4.0.
			     		@short    List of <code>id</code> attribute values for header cells.
	*/
	public native String headers();
	/**	
		 see headers
		     		@short    see headers
	*/
	public native void setHeaders(String arg1);
	/**	
		 Cell height. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-height-TH">
		 height attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Cell height.
	*/
	public native String height();
	/**	
		 see height
		     		@short    see height
	*/
	public native void setHeight(String arg1);
	/**	
		 Suppress word wrapping. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-nowrap">
		 nowrap attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Suppress word wrapping.
	*/
	public native boolean noWrap();
	/**	
		 see noWrap
		     		@short    see noWrap
	*/
	public native void setNoWrap(boolean arg1);
	/**	
		 Number of rows spanned by cell. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-rowspan">
		 rowspan attribute definition </a> in HTML 4.0.
			     		@short    Number of rows spanned by cell.
	*/
	public native long rowSpan();
	/**	
		 see rowSpan
		     		@short    see rowSpan
	*/
	public native void setRowSpan(long arg1);
	/**	
		 Scope covered by header cells. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-scope">
		 scope attribute definition </a> in HTML 4.0.
			     		@short    Scope covered by header cells.
	*/
	public native String scope();
	/**	
		 see scope
		     		@short    see scope
	*/
	public native void setScope(String arg1);
	/**	
		 Vertical alignment of data in cell. 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 data in cell.
	*/
	public native String vAlign();
	/**	
		 see vAlign
		     		@short    see vAlign
	*/
	public native void setVAlign(String arg1);
	/**	
		 Cell width. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-width-TH">
		 width attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Cell width.
	*/
	public native String width();
	/**	
		 see width
		     		@short    see width
	*/
	public native void setWidth(String arg1);
	// DOM::HTMLTableCellElement* HTMLTableCellElement(DOM::HTMLTableCellElementImpl* arg1); >>>> NOT CONVERTED
}