blob: 0c4a2a6ab2137249f3db3d3d53a138e58d3d56d5 [file] [log] [blame]
package org.eclipse.emf.ecp.rap;
/**
* Creates, adds and disposes actions for the menus and action bars of
* each workbench window.
*/
public class ApplicationActionBarAdvisor extends ActionBarAdvisor {
public ApplicationActionBarAdvisor(IActionBarConfigurer configurer) {
super(configurer);
}
// Actions - important to allocate these only in makeActions, and then use
// them in the fill methods. This ensures that the actions aren't recreated
// in the fill methods.
private IWorkbenchAction exitAction;
protected void makeActions(IWorkbenchWindow window) {
// Creates the actions and registers them. Registering also
// provides automatic disposal of the actions when the window is closed.
exitAction = ActionFactory.QUIT.create(window);
register(exitAction);
}
protected void fillMenuBar(IMenuManager menuBar) {
MenuManager fileMenu
= new MenuManager("&File",IWorkbenchActionConstants.M_FILE);
menuBar.add(fileMenu);
fileMenu.add(exitAction);
}
}