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/HTMLTableCellElement.java

220 lines
6.6 KiB

//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 <code>TH</code> and <code>TD</code>
elements. See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-TD">
TD element definition </a> in HTML 4.0.
@short The object used to represent the <code>TH</code> and <code>TD</code> 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 <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-abbr">
abbr attribute definition </a> 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 <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 in cell.
*/
public native String align();
/**
see align
@short see align
*/
public native void setAlign(String arg1);
/**
Names group of related headers. See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-axis">
axis attribute definition </a> 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 <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 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 <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);
/**
Number of columns spanned by cell. See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-colspan">
colspan attribute definition </a> 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 <code>id</code> attribute values for header cells.
See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-headers">
headers attribute definition </a> in HTML 4.0.
@short List of <code>id</code> attribute values for header cells.
*/
public native String headers();
/**
see headers
@short see headers
*/
public native void setHeaders(String arg1);
/**
Cell height. See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-height-TH">
height attribute definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-nowrap">
nowrap attribute definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-rowspan">
rowspan attribute definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-scope">
scope attribute definition </a> 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 <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 in cell.
*/
public native String vAlign();
/**
see vAlign
@short see vAlign
*/
public native void setVAlign(String arg1);
/**
Cell width. See the <a
href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-width-TH">
width attribute definition </a> 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
}