if ( obj != null )
rowSpan = Integer.parseInt( obj.toString()) - 1;
// Rows and columns are 1 based
if (( content != null ) && ( content.length() > 0 ) && !content.equals( " " )) {
XLabel label = new XLabel();
if ( !content.startsWith( "<html>" ))
content = "<html>" + getTextStyleAttributes( label, true ) + content + getTextStyleAttributes( label, false ) + "</html>";
label.setText( content );
if ( XHtmlBuilder.isDebugLayout())
label.setBorder( new LineBorder( Color.green, 2 ));
comp.add( label, 0 );
}
if ( XHtmlBuilder.isDebugLayout())
comp.setBorder( new LineBorder( Color.red, 2 ));