final IButton button = (IButton) this.getMasterParent();
final Components.IActionHandler action = button.getWindow().getActionHandler();
action.handleOnButtonEnter();
}
};
final IButton button = new Button(new JButton("Execute"), eventWorker, this.getBasicWindow());
button.addEventHandler();
return button;
}