for (int i = 0; i < table.getRowCount(); i++) {
String source = (String) table.getValueAt(i, 1, true);
DcField target = (DcField) table.getValueAt(i, 2, true);
if (target != null)
importer.addMapping(source, target);
}
return wizard.getDefinition();
}
@Override