|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xerces.dom.NodeImpl | +--org.apache.xerces.dom.ChildNode | +--org.apache.xerces.dom.ParentNode | +--org.apache.xerces.dom.ElementImpl | +--org.apache.html.dom.HTMLElementImpl | +--org.apache.html.dom.HTMLTableRowElementImpl
HTMLTableRowElement
,
ElementImpl
,
Serialized FormField Summary |
Fields inherited from class org.apache.xerces.dom.ElementImpl |
attributes, name |
Fields inherited from class org.apache.xerces.dom.ParentNode |
firstChild, fNodeListCache, ownerDocument |
Fields inherited from class org.apache.xerces.dom.ChildNode |
nextSibling, previousSibling |
Fields inherited from class org.apache.xerces.dom.NodeImpl |
ELEMENT_DEFINITION_NODE, FIRSTCHILD, flags, HASSTRING, IDATTRIBUTE, IGNORABLEWS, OWNED, ownerNode, READONLY, SPECIFIED, SYNCCHILDREN, SYNCDATA, TREE_POSITION_ANCESTOR, TREE_POSITION_DESCENDANT, TREE_POSITION_DISCONNECTED, TREE_POSITION_EQUIVALENT, TREE_POSITION_FOLLOWING, TREE_POSITION_PRECEDING, TREE_POSITION_SAME_NODE, UNNORMALIZED |
Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
Constructor Summary | |
HTMLTableRowElementImpl(HTMLDocumentImpl owner,
java.lang.String name)
Constructor requires owner document. |
Method Summary | |
void |
deleteCell(int index)
Delete a cell from the current row. |
java.lang.String |
getAlign()
Horizontal alignment of data within cells of this row. |
java.lang.String |
getBgColor()
Background color for rows. |
org.w3c.dom.html.HTMLCollection |
getCells()
The collection of cells in this row. |
java.lang.String |
getCh()
Alignment character for cells in a column. |
java.lang.String |
getChOff()
Offset of alignment character. |
int |
getRowIndex()
The index of this row, relative to the entire table, starting from 0. |
int |
getSectionRowIndex()
The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ),
starting from 0. |
java.lang.String |
getVAlign()
Vertical alignment of data within cells of this row. |
org.w3c.dom.html.HTMLElement |
insertCell(int index)
Insert an empty TD cell into this row. |
void |
setAlign(java.lang.String align)
|
void |
setBgColor(java.lang.String bgColor)
|
void |
setCells(org.w3c.dom.html.HTMLCollection cells)
|
void |
setCh(java.lang.String ch)
|
void |
setChOff(java.lang.String chOff)
|
void |
setRowIndex(int rowIndex)
|
void |
setSectionRowIndex(int sectionRowIndex)
|
void |
setVAlign(java.lang.String vAlign)
|
Methods inherited from class org.apache.html.dom.HTMLElementImpl |
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getClassName, getDir, getElementsByTagName, getElementsByTagNameNS, getForm, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle |
Methods inherited from class org.apache.xerces.dom.ElementImpl |
cloneNode, getAttributes, getBaseURI, getDefaultAttributes, getNodeName, getNodeType, getTagName, hasAttribute, hasAttributeNS, hasAttributes, isEqualNode, normalize, reconcileDefaultAttributes, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttributeNode, setReadOnly, setupDefaultAttributes, setXercesAttributeNode, synchronizeData |
Methods inherited from class org.apache.xerces.dom.ParentNode |
getChildNodes, getChildNodesUnoptimized, getFirstChild, getLastChild, getLength, getOwnerDocument, getTextContent, hasChildNodes, insertBefore, item, removeChild, replaceChild, setTextContent, synchronizeChildren |
Methods inherited from class org.apache.xerces.dom.ChildNode |
getNextSibling, getParentNode, getPreviousSibling |
Methods inherited from class org.apache.xerces.dom.NodeImpl |
addEventListener, appendChild, changed, changes, compareTreePosition, dispatchEvent, getInterface, getLocalName, getNamespaceURI, getNodeValue, getPrefix, getReadOnly, getUserData, getUserData, isDefaultNamespace, isSameNode, isSupported, lookupNamespacePrefix, lookupNamespaceURI, needsSyncChildren, removeEventListener, setNodeValue, setPrefix, setUserData, setUserData, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.w3c.dom.html.HTMLElement |
getClassName, getDir, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle |
Methods inherited from interface org.w3c.dom.Element |
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS |
Methods inherited from interface org.w3c.dom.Node |
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefix |
Constructor Detail |
public HTMLTableRowElementImpl(HTMLDocumentImpl owner, java.lang.String name)
owner
- The owner HTML documentMethod Detail |
public int getRowIndex()
org.w3c.dom.html.HTMLTableRowElement
rowIndex
does not take into account sections (
THEAD
, TFOOT
, or TBODY
)
within the table.
getRowIndex
in interface org.w3c.dom.html.HTMLTableRowElement
public void setRowIndex(int rowIndex)
public int getSectionRowIndex()
org.w3c.dom.html.HTMLTableRowElement
THEAD
, TFOOT
, or TBODY
),
starting from 0.
getSectionRowIndex
in interface org.w3c.dom.html.HTMLTableRowElement
public void setSectionRowIndex(int sectionRowIndex)
public org.w3c.dom.html.HTMLCollection getCells()
org.w3c.dom.html.HTMLTableRowElement
getCells
in interface org.w3c.dom.html.HTMLTableRowElement
public void setCells(org.w3c.dom.html.HTMLCollection cells)
public org.w3c.dom.html.HTMLElement insertCell(int index)
org.w3c.dom.html.HTMLTableRowElement
TD
cell into this row. If
index
is equal to the number of cells, the new cell is
appended
insertCell
in interface org.w3c.dom.html.HTMLTableRowElement
index
- The place to insert the cell, starting from 0.
public void deleteCell(int index)
org.w3c.dom.html.HTMLTableRowElement
deleteCell
in interface org.w3c.dom.html.HTMLTableRowElement
index
- The index of the cell to delete, starting from 0.public java.lang.String getAlign()
org.w3c.dom.html.HTMLTableRowElement
getAlign
in interface org.w3c.dom.html.HTMLTableRowElement
public void setAlign(java.lang.String align)
setAlign
in interface org.w3c.dom.html.HTMLTableRowElement
public java.lang.String getBgColor()
org.w3c.dom.html.HTMLTableRowElement
getBgColor
in interface org.w3c.dom.html.HTMLTableRowElement
public void setBgColor(java.lang.String bgColor)
setBgColor
in interface org.w3c.dom.html.HTMLTableRowElement
public java.lang.String getCh()
org.w3c.dom.html.HTMLTableRowElement
getCh
in interface org.w3c.dom.html.HTMLTableRowElement
public void setCh(java.lang.String ch)
setCh
in interface org.w3c.dom.html.HTMLTableRowElement
public java.lang.String getChOff()
org.w3c.dom.html.HTMLTableRowElement
getChOff
in interface org.w3c.dom.html.HTMLTableRowElement
public void setChOff(java.lang.String chOff)
setChOff
in interface org.w3c.dom.html.HTMLTableRowElement
public java.lang.String getVAlign()
org.w3c.dom.html.HTMLTableRowElement
getVAlign
in interface org.w3c.dom.html.HTMLTableRowElement
public void setVAlign(java.lang.String vAlign)
setVAlign
in interface org.w3c.dom.html.HTMLTableRowElement
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |