summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLTableRowElement.java
blob: 1ad81abf014efe21f32e107a41bceaea6083b4b1 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

 A row in a table. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-TR">
 TR element definition </a> in HTML 4.0.
 		@short    A row in a table.

*/
public class HTMLTableRowElement extends HTMLElement  {
	protected HTMLTableRowElement(Class dummy){super((Class) null);}
	public HTMLTableRowElement() {
		super((Class) null);
		newHTMLTableRowElement();
	}
	private native void newHTMLTableRowElement();
	public HTMLTableRowElement(HTMLTableRowElement other) {
		super((Class) null);
		newHTMLTableRowElement(other);
	}
	private native void newHTMLTableRowElement(HTMLTableRowElement other);
	public HTMLTableRowElement(Node other) {
		super((Class) null);
		newHTMLTableRowElement(other);
	}
	private native void newHTMLTableRowElement(Node other);
	/**	
		 The index of this row, relative to the entire table.
		 This is in logical order and not in document order.
		 The rowIndex does take into account sections
		 (THEAD, TFOOT or TBODY) within the table,
		 placing THEAD rows first in the index, followed by
		 TBODY rows, followed by TFOOT rows.
		     		@short    The index of this row, relative to the entire table.
	*/
	public native long rowIndex();
	/**	
		 see rowIndex
			 This function is obsolete - the rowIndex property is actually supposed to be read-only
		 (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html)
		     		@short    see rowIndex
	*/
	public native void setRowIndex(long arg1);
	/**	
		 The index of this row, relative to the current section (
		 <code>THEAD</code> , <code>TFOOT</code> , or <code>TBODY</code>
		 ).
			     		@short    The index of this row, relative to the current section (  <code>THEAD</code> , <code>TFOOT</code> , or <code>TBODY</code>  ).
	*/
	public native long sectionRowIndex();
	/**	
		 see sectionRowIndex
			 This function is obsolete - the sectionRowIndex property is actually supposed to be read-only
		 (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html)
		     		@short    see sectionRowIndex
	*/
	public native void setSectionRowIndex(long arg1);
	/**	
		 The collection of cells in this row.
			     		@short    The collection of cells in this row.
	*/
	public native HTMLCollection cells();
	/**	
		 see cells
			 This function is obsolete - the cells property is actually supposed to be read-only
		 (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html)
		     		@short    see cells
	*/
	public native void setCells(HTMLCollection arg1);
	/**	
		 Horizontal alignment of data within cells of this row. 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 within cells of this row.
	*/
	public native String align();
	/**	
		 see align
		     		@short    see align
	*/
	public native void setAlign(String arg1);
	/**	
		 Background color for rows. 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    Background color for rows.
	*/
	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);
	/**	
		 Vertical alignment of data within cells of this row. 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 within cells of this row.
	*/
	public native String vAlign();
	/**	
		 see vAlign
		     		@short    see vAlign
	*/
	public native void setVAlign(String arg1);
	/**	
		 Insert an empty <code>TD</code> cell into this row.
		 If index is -1 or equal to the number of cells, the new
		 cell is appended.
			@param index The place to insert the cell.
			     		@return The newly created cell.

		@short    Insert an empty <code>TD</code> cell into this row.
	*/
	public native HTMLElement insertCell(long index);
	/**	
		 Delete a cell from the current row.
			@param index The index of the cell to delete, starting from 0.
		 If the index is -1 the last cell in the row is deleted.
			     		@short    Delete a cell from the current row.
	*/
	public native void deleteCell(long index);
	// DOM::HTMLTableRowElement* HTMLTableRowElement(DOM::HTMLTableRowElementImpl* arg1); >>>> NOT CONVERTED
}