String message =
"Can not execute method " +
executionInput.getMethodRef().getPath() + ".\nMethod not found!";
MessageUtil.showErrorDialog(message);
} else {
MethodExecutionDialog executionDialog = new MethodExecutionDialog(executionInput, debug);
executionDialog.show();
return executionDialog.getExitCode() == DialogWrapper.OK_EXIT_CODE;
}
} else {
String message =
"Can not execute method " + executionInput.getMethodRef().getPath() + ".\n" +
"No connectivity to '" + executionInput.getConnectionHandler().getQualifiedName() + "'. " +