org.apache.html.dom
public class HTMLTableElementImpl extends HTMLElementImpl implements HTMLTableElement
Version: $Revision: 1.14 $ $Date: 2005/04/18 01:20:21 $
See Also: org.w3c.dom.html.HTMLAnchorElement org.apache.xerces.dom.ElementImpl
| Constructor Summary | |
|---|---|
| HTMLTableElementImpl(HTMLDocumentImpl owner, 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() |
| HTMLElement | createTFoot() |
| HTMLElement | createTHead() |
| void | deleteCaption() |
| void | deleteRow(int index) |
| void | deleteTFoot() |
| void | deleteTHead() |
| String | getAlign() |
| String | getBgColor() |
| String | getBorder() |
| HTMLTableCaptionElement | getCaption() |
| String | getCellPadding() |
| String | getCellSpacing() |
| String | getFrame() |
| HTMLCollection | getRows() |
| String | getRules() |
| String | getSummary() |
| HTMLCollection | getTBodies() |
| HTMLTableSectionElement | getTFoot() |
| HTMLTableSectionElement | getTHead() |
| String | getWidth() |
| HTMLElement | insertRow(int index) |
| void | setAlign(String align) |
| void | setBgColor(String bgColor) |
| void | setBorder(String border) |
| void | setCaption(HTMLTableCaptionElement caption) |
| void | setCellPadding(String cellPadding) |
| void | setCellSpacing(String cellSpacing) |
| void | setFrame(String frame) |
| void | setRules(String rules) |
| void | setSummary(String summary) |
| void | setTFoot(HTMLTableSectionElement tFoot) |
| void | setTHead(HTMLTableSectionElement tHead) |
| void | setWidth(String width) |
Parameters: owner The owner HTML document