styles = new HashSet<String>();
styleNames.put(row, styles);
}
if (styles.add(styleName)) {
final Update update = new Update(ID);
update.put(PROPERTY.ROW, row);
update.put(PROPERTY.HTMLTABLE_ROW_STYLE, true);
update.put(PROPERTY.ROW_FORMATTER_ADD_STYLE_NAME, styleName);
Txn.get().getTxnContext().save(update);
}
}