1 package io.github.magwas.inez.ui;
2
3 import org.eclipse.ui.application.ActionBarAdvisor;
4 import org.eclipse.ui.application.IActionBarConfigurer;
5
6 /**
7 * An action bar advisor is responsible for creating, adding, and disposing of
8 * the actions added to a workbench window. Each window will be populated with
9 * new actions.
10 */
11 public class ApplicationActionBarAdvisor extends ActionBarAdvisor {
12
13 // Actions - important to allocate these only in makeActions, and then use
14 // them
15 // in the fill methods. This ensures that the actions aren't recreated
16 // when fillActionBars is called with FILL_PROXY.
17
18 public ApplicationActionBarAdvisor(IActionBarConfigurer configurer) {
19 super(configurer);
20 }
21
22 }