* @return String <tr> tag with the appropriate css class attribute
*/
public String getOpenTag()
{
Map rowAttributes = new HtmlAttributeMap();
MultipleHtmlAttribute cssAttribute = new MultipleHtmlAttribute(this.tableModel.getProperties().getCssRow(
this.rowNumber));
if (this.tableModel.getTableDecorator() != null)
{
try
{
String addStyle = this.tableModel.getTableDecorator().addRowClass();
if (StringUtils.isNotBlank(addStyle))
{
cssAttribute.addAttributeValue(addStyle);
}
String id = this.tableModel.getTableDecorator().addRowId();
if (StringUtils.isNotBlank(id))
{