public boolean isCellEditable(int row, int column) {
TableColumnMetaData md = tableModel.getColumnDescriptor(column);
if (md == DataElementTableModel.NAME) {
return false;
}
DataElement de = tableModel.getRowObjectAt(row);
return de.getScope() == DataElementScope.GLOBAL || sourceDataElementValuesEditable;
}
};
table.setAutoCreateRowSorter(true);
TableStyles.wide().makeOver(table);
table.setShowVerticalLines(true);