String[] exclusions = SUGGESTED_EXCLUSIONS.split(";"); // $NON-NLS-1$
if (exclusions.length>0) {
model = (PowerTableModel) table.getModel();
if(model != null) {
for (String clipboardLine : exclusions) {
model.addRow(new Object[] {clipboardLine});
}
if (table.getRowCount() > rowCount) {
// Highlight (select) the appropriate rows.
int rowToSelect = model.getRowCount() - 1;
table.setRowSelectionInterval(rowCount, rowToSelect);