dialog.setVisible(true);
if (descriptor.getValue() == DialogDescriptor.OK_OPTION) {
try {
// run command
List<String> params = generatePanel.getParameters();
Oil.forPhpModule(phpModule, true).runCommand(phpModule, params, new RefreshPhpModuleRunnable(phpModule));
} catch (InvalidPhpExecutableException ex) {
Exceptions.printStackTrace(ex);
}
}
}