//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; /** The object used to represent the TH and TD elements. See the TD element definition in HTML 4.0. @short The object used to represent the TH and TD elements. */ public class HTMLTableCellElement extends HTMLElement { protected HTMLTableCellElement(Class dummy){super((Class) null);} public HTMLTableCellElement() { super((Class) null); newHTMLTableCellElement(); } private native void newHTMLTableCellElement(); public HTMLTableCellElement(HTMLTableCellElement other) { super((Class) null); newHTMLTableCellElement(other); } private native void newHTMLTableCellElement(HTMLTableCellElement other); public HTMLTableCellElement(Node other) { super((Class) null); newHTMLTableCellElement(other); } private native void newHTMLTableCellElement(Node other); /** The index of this cell in the row. @short The index of this cell in the row. */ public native long cellIndex(); /** see cellIndex This function is obsolete - the cellIndex property is actually supposed to be read-only (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html) @short see cellIndex */ public native void setCellIndex(long arg1); /** Abbreviation for header cells. See the abbr attribute definition in HTML 4.0. @short Abbreviation for header cells. */ public native String abbr(); /** see abbr @short see abbr */ public native void setAbbr(String arg1); /** Horizontal alignment of data in cell. See the align attribute definition in HTML 4.0. @short Horizontal alignment of data in cell. */ public native String align(); /** see align @short see align */ public native void setAlign(String arg1); /** Names group of related headers. See the axis attribute definition in HTML 4.0. @short Names group of related headers. */ public native String axis(); /** see axis @short see axis */ public native void setAxis(String arg1); /** Cell background color. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Cell background color. */ public native String bgColor(); /** see bgColor @short see bgColor */ public native void setBgColor(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); /** Number of columns spanned by cell. See the colspan attribute definition in HTML 4.0. @short Number of columns spanned by cell. */ public native long colSpan(); /** see colSpan @short see colSpan */ public native void setColSpan(long arg1); /** List of id attribute values for header cells. See the headers attribute definition in HTML 4.0. @short List of id attribute values for header cells. */ public native String headers(); /** see headers @short see headers */ public native void setHeaders(String arg1); /** Cell height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Cell height. */ public native String height(); /** see height @short see height */ public native void setHeight(String arg1); /** Suppress word wrapping. See the nowrap attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Suppress word wrapping. */ public native boolean noWrap(); /** see noWrap @short see noWrap */ public native void setNoWrap(boolean arg1); /** Number of rows spanned by cell. See the rowspan attribute definition in HTML 4.0. @short Number of rows spanned by cell. */ public native long rowSpan(); /** see rowSpan @short see rowSpan */ public native void setRowSpan(long arg1); /** Scope covered by header cells. See the scope attribute definition in HTML 4.0. @short Scope covered by header cells. */ public native String scope(); /** see scope @short see scope */ public native void setScope(String arg1); /** Vertical alignment of data in cell. See the valign attribute definition in HTML 4.0. @short Vertical alignment of data in cell. */ public native String vAlign(); /** see vAlign @short see vAlign */ public native void setVAlign(String arg1); /** Cell width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Cell width. */ public native String width(); /** see width @short see width */ public native void setWidth(String arg1); // DOM::HTMLTableCellElement* HTMLTableCellElement(DOM::HTMLTableCellElementImpl* arg1); >>>> NOT CONVERTED }