summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLTableRowElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLTableRowElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLTableRowElement.java155
1 files changed, 155 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLTableRowElement.java b/kdejava/koala/org/kde/koala/HTMLTableRowElement.java
new file mode 100644
index 00000000..1ad81abf
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLTableRowElement.java
@@ -0,0 +1,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
+}