Skip to content

Instantly share code, notes, and snippets.

@ClausPolanka
Created December 9, 2010 10:16
Show Gist options
  • Save ClausPolanka/734568 to your computer and use it in GitHub Desktop.
Save ClausPolanka/734568 to your computer and use it in GitHub Desktop.
Bad comment and null as return value.
/**
* the command has been executed, so extract extract the needed information from the application
* context.
*/
public Object execute(ExecutionEvent event)
throws ExecutionException {
LaunchCommand orderOverviewCmd = new LaunchCommand("overviewOrderStatus");
LaunchCommandParameter param = new LaunchCommandParameter();
param.setLaunchMode(LaunchMode.DIALOG);
orderOverviewCmd.execute(param);
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment