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

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

/**

 The <code>THEAD</code> , <code>TFOOT</code> , and <code>TBODY</code>
 elements.
 		@short    The <code>THEAD</code> , <code>TFOOT</code> , and <code>TBODY</code>  elements.

*/
public class HTMLTableSectionElement extends HTMLElement  {
	protected HTMLTableSectionElement(Class dummy){super((Class) null);}
	public HTMLTableSectionElement() {
		super((Class) null);
		newHTMLTableSectionElement();
	}
	private native void newHTMLTableSectionElement();
	public HTMLTableSectionElement(HTMLTableSectionElement other) {
		super((Class) null);
		newHTMLTableSectionElement(other);
	}
	private native void newHTMLTableSectionElement(HTMLTableSectionElement other);
	public HTMLTableSectionElement(Node other) {
		super((Class) null);
		newHTMLTableSectionElement(other);
	}
	private native void newHTMLTableSectionElement(Node other);
	/**	
		 Horizontal alignment of data in cells. See the <code>align</code>
		 attribute for HTMLTheadElement for details.
			     		@short    Horizontal alignment of data in cells.
	*/
	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);
	/**	
		 Vertical alignment of data in cells. See the <code>valign</code>
		 attribute for HTMLTheadElement for details.
			     		@short    Vertical alignment of data in cells.
	*/
	public native String vAlign();
	/**	
		 see vAlign
		     		@short    see vAlign
	*/
	public native void setVAlign(String arg1);
	/**	
		 The collection of rows in this table section.
			     		@short    The collection of rows in this table section.
	*/
	public native HTMLCollection rows();
	/**	
		 Insert a row into this section.
		 The new row is inserted immediately before the current indexth
		 row in this section. If index is -1 or equal to the number of rows
		 in this sectino, the new row is appended.
			@param index The row number where to insert a new row.
			     		@return The newly created row.

		@short    Insert a row into this section.
	*/
	public native HTMLElement insertRow(long index);
	/**	
		 Delete a row from this section.
			@param index The index of the row to be deleted,
		 or -1 to delete the last row. This index starts from 0 and is relative only
		 to the rows contained inside this section, not all the rows in the table.
			     		@short    Delete a row from this section.
	*/
	public native void deleteRow(long index);
	// DOM::HTMLTableSectionElement* HTMLTableSectionElement(DOM::HTMLTableSectionElementImpl* arg1); >>>> NOT CONVERTED
}