* a simple wrapper for actions. Uses a command parameter and reflection to
* fire off the passed-in action class.
*/
public Object execute(ExecutionEvent event) throws ExecutionException {
InsertSnippetCommand snippetCommand = new InsertSnippetCommand();
return snippetCommand.execute(event);
}