You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLTableSectionElement.java

103 lines
3.3 KiB

//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
}