The Table Element works by calling newRow and then adding cells or
headings.
Notes
Tables are implemented by nesting a cell Block within a row Block
within the table which is also a Block (see nest() on class Composite).
Once a row and cell have been created, calling add or attributes on
the table actually calls the cell.
See Also:org.mortbay.html.Element
Access the default cell template.
The Block returned is used as a template for all new cells added
to the table. Thus if attributes or content are added to the
default cell, the these are added to each new cell in the table.
The default cell template
Access the default header cell template.
The Block returned is used as a template for all new header cells added
to the table. Thus if attributes or content are added to the
default cell, the these are added to each new cell in the table.
The default head cell template
Access the default row template.
The Block returned is used as a template for all new rows added
to the table. Thus if attributes or content are added to the
default row, the these are added to each new row in the table.
The default row template
Add cell nesting factory.
Set the CompositeFactory for this thread. Each new cell in the
table added by this thread will have a new Composite from this
factory nested in the Cell.
Parameters: factory - The factory for this Thread. If null clear thisthreads factory.
Add cell nesting factory for table.
Set the CompositeFactory for this thread. Each new cell in the
table added by this thread will have a new Composite from this
factory nested in the Cell.
Parameters: factory - The factory for this Thread. If null clear thisthreads factory.
Add cell nesting factory for thread.
Set the CompositeFactory for this thread. Each new cell in the
table added by this thread will have a new Composite from this
factory nested in the Cell.
Parameters: factory - The factory for this Thread. If null clear thisthreads factory.