|
|
Class: TableBody (in HTML)
Object
|
+--HTML::AbstractElement
|
+--HTML::AbstractHTMLElement
|
+--HTML::TableBody
- Package:
- stx:goodies/webServer/htmlTree
- Category:
- Net-Documents-ModelTree-Table
- Version:
- rev:
1.22
date: 2007/11/05 21:12:39
- user: cg
- file: HTML__TableBody.st directory: goodies/webServer/htmlTree
- module: stx stc-classLibrary: htmlTree
required protocol
-
tagName
-
interface-accessing-elements
-
addRow
-
Add an empty table row to the children of this table body.
The passed table row can be a ready built table row,
a simple string to be wrapped in a row, or a collection
of data cells. These data cells can be either ready built
data cells or simple strings too.
-
addRow: aRowOrString
-
Add a table row to the children of this table body.
The passed table row can be a ready built table row,
a simple string to be wrapped in a row, or a collection
of data cells. These data cells can be either ready built
data cells or simple strings too.
-
rowAt: anIndex
-
Return the row at an index or nil.
-
rowAt: aRowIndex cellAt: aCellIndex
-
Put a cell at the given indices.
-
rowAt: aRowIndex cellAt: aCellIndex put: aCellOrString
-
Put a cell at the given indices.
-
rowAt: anIndex put: aRowOrString
-
Return the row at an index or nil.
-
rowsDo: aBlock
-
private-accessing
-
getRowAt: aRowIndex
-
Return a row at the given index.
If not exists build one.
private-building
-
buildRow: aTableRow
-
Build and return a table row.
The passed table row can be a ready built table row,
a simple string to be wrapped in a row, or a collection
of data cells. These data cells can be either ready built
data cells or simple strings too.
queries
-
canHaveChild: anElement
-
-
canHaveText
-
required-visiting
-
acceptHTMLVisitor: aVisitor
-
visitor pattern: dispatch me to the visitor
testing
-
isTableBody
-
|