@Override
public void widgetSelected(SelectionEvent e) {
Map<String, NatTable> export = new HashMap<String, NatTable>();
export.put("Persons", natTable);
export.put("Numbers", numberNatTable);
new NatExporter(Display.getCurrent().getActiveShell())
.exportMultipleNatTables(new HSSFExcelExporter(),
export);
}
});