com.jniwrapper.win32.ie.dom
Interface TableRow

All Superinterfaces:
org.w3c.dom.Element, org.w3c.dom.events.EventTarget, org.w3c.dom.html.HTMLElement, HTMLNode, org.w3c.dom.Node
All Known Implementing Classes:
TableRowImpl

public interface TableRow
extends HTMLElement

This interface represents the table row element.


Field Summary
 
Fields inherited from interface 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
 TableCell createCell()
          Creates the cell in the row as last cell.
 TableCell createCell(int index)
          Creates the cell in the row.
 void deleteCell()
          Deletes the last cell in the row.
 void deleteCell(int index)
          Deletes the cell in the table row.
 java.util.List getCells()
          Returns cells in the row.
 
Methods inherited from interface com.jniwrapper.win32.ie.dom.HTMLElement
click, fireEvent, fireEvent, focus, getAbsoluteLocation, getBackground, getBorder, getClassName, getDir, getElementClass, getElementPeer, getElementSize, getHeight, getHTML, getId, getLang, getLocation, getOffsetParent, getStyle, getText, getTitle, getWidth, mouseOver, setAttribute, setBackground, setBorder, setBorder, setClassName, setDir, setHTML, setId, setLang, setStyle, setText, setTitle
 
Methods inherited from interface com.jniwrapper.win32.ie.dom.HTMLNode
getNodePeer, getObjectID
 
Methods inherited from interface 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 interface 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
 
Methods inherited from interface org.w3c.dom.events.EventTarget
addEventListener, dispatchEvent, removeEventListener
 

Method Detail

createCell

TableCell createCell(int index)
Creates the cell in the row.

Parameters:
index - position of the created cell. The index is zero-based
Returns:
created cell

createCell

TableCell createCell()
Creates the cell in the row as last cell.

Returns:
created cell

deleteCell

void deleteCell(int index)
Deletes the cell in the table row.

Parameters:
index - position of the deleted cell.

deleteCell

void deleteCell()
Deletes the last cell in the row.


getCells

java.util.List getCells()
Returns cells in the row.

Returns:
java.util.List of TableCell objects