}
StringBuffer cellClassName = new StringBuffer("rich-ordering-list-cell");
ComponentVariables variables = ComponentsVariableResolver.getVariables(this, table);
ItemState state = getItemState(context, table, variables);
boolean active = state.isActive();
// if (active) {
// rowClassName.append(" rich-ordering-list-row-active");
// cellClassName.append(" rich-ordering-list-cell-active");
// }
boolean selected = state.isSelected();
if (selected) {
rowClassName.append(" rich-ordering-list-row-selected");
cellClassName.append(" rich-ordering-list-cell-selected");
}