Container Controls
| A |
The simplest example of a container control is a CoalesceControl whose output is simply the concatenation of the outputs of all its subcontrols. This is very useful and helps one masquerade several controls as one.
Another example of a container control is the TableContainerControl, which outputs an entire table. It has as subcontrols RowContainerControls which output rows of a table. So the output of a TableContainerControl is just a pair of <TABLE> ... </TABLE> where ... is the output of all the RowContainerControls. Well almost since it is the TableContainerControl which is incharge of outputting the table header and the table attributes. In our implementation of a TableContainerControl, it even messes with the RowContainerControls it contains.
For more example of container controls, see utils/controls/containercontrols.

