|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.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.HTMLTableElementImpl
public class HTMLTableElementImpl
HTMLAnchorElement,
ElementImpl,
Serialized Form| Field Summary |
|---|
| Fields inherited from interface org.w3c.dom.TypeInfo |
|---|
DERIVATION_EXTENSION, DERIVATION_LIST, DERIVATION_RESTRICTION, DERIVATION_UNION |
| Constructor Summary | |
|---|---|
HTMLTableElementImpl(HTMLDocumentImpl owner,
java.lang.String name)
Constructor requires owner document. |
|
| Method Summary | |
|---|---|
Node |
cloneNode(boolean deep)
Explicit implementation of cloneNode() to ensure that cache used for getRows() and getTBodies() gets cleared. |
HTMLElement |
createCaption()
Create a new table caption object or return an existing one. |
HTMLElement |
createTFoot()
Create a table footer row or return an existing one. |
HTMLElement |
createTHead()
Create a table header row or return an existing one. |
void |
deleteCaption()
Delete the table caption, if one exists. |
void |
deleteRow(int index)
Delete a table row. |
void |
deleteTFoot()
Delete the footer from the table, if one exists. |
void |
deleteTHead()
Delete the header from the table, if one exists. |
java.lang.String |
getAlign()
Specifies the table's position with respect to the rest of the document. |
java.lang.String |
getBgColor()
Cell background color. |
java.lang.String |
getBorder()
The width of the border around the table. |
HTMLTableCaptionElement |
getCaption()
Returns the table's CAPTION, or void if none exists. |
java.lang.String |
getCellPadding()
Specifies the horizontal and vertical space between cell content andcell borders. |
java.lang.String |
getCellSpacing()
Specifies the horizontal and vertical separation between cells. |
java.lang.String |
getFrame()
Specifies which external table borders to render. |
HTMLCollection |
getRows()
Returns a collection of all the rows in the table, including all in THEAD, TFOOT, all TBODY elements. |
java.lang.String |
getRules()
Specifies which internal table borders to render. |
java.lang.String |
getSummary()
Supplementary description about the purpose or structureof a table. |
HTMLCollection |
getTBodies()
Returns a collection of the defined table bodies. |
HTMLTableSectionElement |
getTFoot()
Returns the table's TFOOT, or null if none
exists. |
HTMLTableSectionElement |
getTHead()
Returns the table's THEAD, or null if none
exists. |
java.lang.String |
getWidth()
Specifies the desired table width. |
HTMLElement |
insertRow(int index)
Insert a new empty row in the table.Note. |
void |
setAlign(java.lang.String align)
|
void |
setBgColor(java.lang.String bgColor)
|
void |
setBorder(java.lang.String border)
|
void |
setCaption(HTMLTableCaptionElement caption)
|
void |
setCellPadding(java.lang.String cellPadding)
|
void |
setCellSpacing(java.lang.String cellSpacing)
|
void |
setFrame(java.lang.String frame)
|
void |
setRules(java.lang.String rules)
|
void |
setSummary(java.lang.String summary)
|
void |
setTFoot(HTMLTableSectionElement tFoot)
|
void |
setTHead(HTMLTableSectionElement tHead)
|
void |
setWidth(java.lang.String width)
|
| 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 |
|---|
getAttributes, getBaseURI, getNodeName, getNodeType, getSchemaTypeInfo, getTagName, getTypeName, getTypeNamespace, hasAttribute, hasAttributeNS, hasAttributes, isDerivedFrom, isEqualNode, normalize, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS, setReadOnly |
| Methods inherited from class org.apache.xerces.dom.ParentNode |
|---|
getChildNodes, getFirstChild, getLastChild, getLength, getOwnerDocument, getTextContent, hasChildNodes, insertBefore, item, removeChild, replaceChild, setTextContent |
| Methods inherited from class org.apache.xerces.dom.ChildNode |
|---|
getNextSibling, getParentNode, getPreviousSibling |
| Methods inherited from class org.apache.xerces.dom.NodeImpl |
|---|
addEventListener, appendChild, compareDocumentPosition, compareTreePosition, dispatchEvent, getFeature, getLocalName, getNamespaceURI, getNodeValue, getPrefix, getReadOnly, getUserData, getUserData, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, needsSyncChildren, removeEventListener, setNodeValue, setPrefix, setUserData, setUserData, toString |
| Methods inherited from class java.lang.Object |
|---|
equals, 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, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS |
| Methods inherited from interface org.w3c.dom.Node |
|---|
appendChild, 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 |
| Constructor Detail |
|---|
public HTMLTableElementImpl(HTMLDocumentImpl owner,
java.lang.String name)
owner - The owner HTML document| Method Detail |
|---|
public HTMLTableCaptionElement getCaption()
HTMLTableElementCAPTION, or void if none exists.
getCaption in interface HTMLTableElementpublic void setCaption(HTMLTableCaptionElement caption)
setCaption in interface HTMLTableElementpublic HTMLElement createCaption()
HTMLTableElement
createCaption in interface HTMLTableElementCAPTION element.public void deleteCaption()
HTMLTableElement
deleteCaption in interface HTMLTableElementpublic HTMLTableSectionElement getTHead()
HTMLTableElementTHEAD, or null if none
exists.
getTHead in interface HTMLTableElementpublic void setTHead(HTMLTableSectionElement tHead)
setTHead in interface HTMLTableElementpublic HTMLElement createTHead()
HTMLTableElement
createTHead in interface HTMLTableElementTHEAD).public void deleteTHead()
HTMLTableElement
deleteTHead in interface HTMLTableElementpublic HTMLTableSectionElement getTFoot()
HTMLTableElementTFOOT, or null if none
exists.
getTFoot in interface HTMLTableElementpublic void setTFoot(HTMLTableSectionElement tFoot)
setTFoot in interface HTMLTableElementpublic HTMLElement createTFoot()
HTMLTableElement
createTFoot in interface HTMLTableElementTFOOT).public void deleteTFoot()
HTMLTableElement
deleteTFoot in interface HTMLTableElementpublic HTMLCollection getRows()
HTMLTableElementTHEAD, TFOOT, all TBODY elements.
getRows in interface HTMLTableElementpublic HTMLCollection getTBodies()
HTMLTableElement
getTBodies in interface HTMLTableElementpublic java.lang.String getAlign()
HTMLTableElement
getAlign in interface HTMLTableElementpublic void setAlign(java.lang.String align)
setAlign in interface HTMLTableElementpublic java.lang.String getBgColor()
HTMLTableElement
getBgColor in interface HTMLTableElementpublic void setBgColor(java.lang.String bgColor)
setBgColor in interface HTMLTableElementpublic java.lang.String getBorder()
HTMLTableElement
getBorder in interface HTMLTableElementpublic void setBorder(java.lang.String border)
setBorder in interface HTMLTableElementpublic java.lang.String getCellPadding()
HTMLTableElement
getCellPadding in interface HTMLTableElementpublic void setCellPadding(java.lang.String cellPadding)
setCellPadding in interface HTMLTableElementpublic java.lang.String getCellSpacing()
HTMLTableElement
getCellSpacing in interface HTMLTableElementpublic void setCellSpacing(java.lang.String cellSpacing)
setCellSpacing in interface HTMLTableElementpublic java.lang.String getFrame()
HTMLTableElement
getFrame in interface HTMLTableElementpublic void setFrame(java.lang.String frame)
setFrame in interface HTMLTableElementpublic java.lang.String getRules()
HTMLTableElement
getRules in interface HTMLTableElementpublic void setRules(java.lang.String rules)
setRules in interface HTMLTableElementpublic java.lang.String getSummary()
HTMLTableElement
getSummary in interface HTMLTableElementpublic void setSummary(java.lang.String summary)
setSummary in interface HTMLTableElementpublic java.lang.String getWidth()
HTMLTableElement
getWidth in interface HTMLTableElementpublic void setWidth(java.lang.String width)
setWidth in interface HTMLTableElementpublic HTMLElement insertRow(int index)
HTMLTableElement
insertRow in interface HTMLTableElementindex - The row number where to insert a new row.
public void deleteRow(int index)
HTMLTableElement
deleteRow in interface HTMLTableElementindex - The index of the row to be deleted.public Node cloneNode(boolean deep)
cloneNode in interface NodecloneNode in class ElementImpldeep - If true, recursively clone the subtree under
the specified node; if false, clone only the node
itself (and its attributes, if it is an Element).
Node.cloneNode(boolean)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||