//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; /** The THEAD , TFOOT , and TBODY elements. @short The THEAD , TFOOT , and TBODY 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 align 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 char attribute definition 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 charoff attribute definition 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 valign 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 }