if (field != null) {
boolean enabled = ((Boolean) table.getValueAt(i, 1, true)).booleanValue();
boolean fillGaps = ((Boolean) table.getValueAt(i, 2, true)).booleanValue();
int step = ((Integer) table.getValueAt(i, 3, true)).intValue();
enhancers.add(new AutoIncrementer(field.getIndex(), enabled, fillGaps, step));
}
}
return enhancers;
}