This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


org.w3c.dom.html
interface HTMLTableCellElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLTableCellElement
extends HTMLElement

The object used to represent the TH and TD elements. See the TD element definition in HTML 4.0.

See also the Document Object Model (DOM) Level 2 Specification.


Field Summary
 
Fields inherited from class org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
 
Method Summary
 String

          Abbreviation for header cells.
 String

          Horizontal alignment of data in cell.
 String

          Names group of related headers.
 String

          Cell background color.
 int

          The index of this cell in the row, starting from 0.
 String

          Alignment character for cells in a column.
 String

          Offset of alignment character.
 int

          Number of columns spanned by cell.
 String

          List of id attribute values for header cells.
 String

          Cell height.
 boolean

          Suppress word wrapping.
 int

          Number of rows spanned by cell.
 String

          Scope covered by header cells.
 String

          Vertical alignment of data in cell.
 String

          Cell width.
 void

          
 void

          
 void

          
 void
setBgColor(String bgColor)

          
 void

          
 void

          
 void
setColSpan(int colSpan)

          
 void
setHeaders(String headers)

          
 void
setHeight(String height)

          
 void
setNoWrap(boolean noWrap)

          
 void
setRowSpan(int rowSpan)

          
 void

          
 void
setVAlign(String vAlign)

          
 void

          
 
Methods inherited from class org.w3c.dom.html.HTMLElement
getClassName, getDir, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle
 
Methods inherited from class org.w3c.dom.Element
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
 
Methods inherited from class org.w3c.dom.Node
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
 

Method Detail

getAbbr

public String getAbbr()
Abbreviation for header cells. See the abbr attribute definition in HTML 4.0.


getAlign

public String getAlign()
Horizontal alignment of data in cell. See the align attribute definition in HTML 4.0.


getAxis

public String getAxis()
Names group of related headers. See the axis attribute definition in HTML 4.0.


getBgColor

public String getBgColor()
Cell background color. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.


getCellIndex

public int getCellIndex()
The index of this cell in the row, starting from 0. This index is in document tree order and not display order.


getCh

public String getCh()
Alignment character for cells in a column. See the char attribute definition in HTML 4.0.


getChOff

public String getChOff()
Offset of alignment character. See the charoff attribute definition in HTML 4.0.


getColSpan

public int getColSpan()
Number of columns spanned by cell. See the colspan attribute definition in HTML 4.0.


getHeaders

public String getHeaders()
List of id attribute values for header cells. See the headers attribute definition in HTML 4.0.


getHeight

public String getHeight()
Cell height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.


getNoWrap

public boolean getNoWrap()
Suppress word wrapping. See the nowrap attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.


getRowSpan

public int getRowSpan()
Number of rows spanned by cell. See the rowspan attribute definition in HTML 4.0.


getScope

public String getScope()
Scope covered by header cells. See the scope attribute definition in HTML 4.0.


getVAlign

public String getVAlign()
Vertical alignment of data in cell. See the valign attribute definition in HTML 4.0.


getWidth

public String getWidth()
Cell width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.


setAbbr

public void setAbbr(String abbr)
Parameters:
abbr

setAlign

public void setAlign(String align)
Parameters:
align

setAxis

public void setAxis(String axis)
Parameters:
axis

setBgColor

public void setBgColor(String bgColor)
Parameters:
bgColor

setCh

public void setCh(String ch)
Parameters:
ch

setChOff

public void setChOff(String chOff)
Parameters:
chOff

setColSpan

public void setColSpan(int colSpan)
Parameters:
colSpan

setHeaders

public void setHeaders(String headers)
Parameters:
headers

setHeight

public void setHeight(String height)
Parameters:
height

setNoWrap

public void setNoWrap(boolean noWrap)
Parameters:
noWrap

setRowSpan

public void setRowSpan(int rowSpan)
Parameters:
rowSpan

setScope

public void setScope(String scope)
Parameters:
scope

setVAlign

public void setVAlign(String vAlign)
Parameters:
vAlign

setWidth

public void setWidth(String width)
Parameters:
width


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.