borland Packages Class Hierarchy internetbeans Package
java.lang.Object +----com.borland.internetbeans.IxComponent +----com.borland.internetbeans.IxTableRow
Variables Constructors Properties Methods
Implements Renderable, Serializable, Cloneable
Default row renderer.
This class is different from all other subclasses of IxComponent
in that it does not render a complete element. Instead, it renders the start and end tags separately, and relies on IxTable
to call the cell renderers to generate the row body.
public static final String TAG_NAME = "tr"Tag name for table cells.
public IxTableRow()Creates a row renderer with no attributes.
public IxTableRow(String cssClass)Creates a row renderer with the designated Cascading Style Sheet class.
public IxTableRow(Map attributes)Creates a row renderer with the designated attributes.
protected void assembleElementBody(OutputWrapper outWrap)Concretes
IxComponent
but does nothing; the IxTable
uses IxTableCellRenderer
objects to render the cells that make up the body of the row element.
outWrap
protected void assembleTagAttributes(OutputWrapper outWrap)Concretes
IxComponent
but does nothing; any attributes are handled by assembleMergedAttributes
.
outWrap
protected String[] getClosureTags()Table rows may have a matching end tag, but may also be closed by the end of the table.
protected String getElementType()Returns the tag name "tr"
protected boolean isElementEmpty()Table rows are not empty.
public void renderEndTag(OutputWrapper outWrap)Renders the end-tag for the row.
outWrap