/**
  * Create a new action with the given name for this controller
  *
  * @param eventHandler is the action's eventhandler with proper signature
  * @param name is the action's name
  * @param text is the text displayed in the UI element triggering this action
  */
 public IWDAction wdCreateNamedAction(
     WDActionEventHandler eventHandler, String name, String text) {
   return wdAlterEgo.createAction(name, eventHandler, text, null);
 }