@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
InputDialog inputDialog = new InputDialog(Display.getCurrent().getActiveShell(), "Rename Column", "Enter the new name for the column", null, null);
if (inputDialog.open() == Window.OK) {
ICsvService service = new CsvService();
service.renameColumn(inputDialog.getValue(), event);
}
return null;
}
}