setBackground(table.getBackground());
}
}
private void renderEditableCell(KongaTable table, Object value, boolean isSelected, int row) {
MessagePropertyType type = getType(table, row);
if (isDefaultValueValid(value, type)) {
renderValidCell(table, value, isSelected);
} else {
renderInvalidCell(table, value, type, isSelected);
}