sb.append( type == Type.INLINE ? "/>" : ">" );
if ( this instanceof Container )
{
Container container = ( Container ) this;
for ( Component c : container.getComps() )
{
sb.append( c.render() );
}
if ( container.getInnerHtml() != null )
{
sb.append( container.getInnerHtml() );
}
}
if ( type == Type.BLOCK )
{