source: default/v2/trunk/de.ugoe.cs.swe.bnftools.ebnf.standalone/src/de/ugoe/cs/swe/bnftools/ebnf/standalone/ApplicationActionBarAdvisor.java @ 74

Last change on this file since 74 was 74, checked in by phdmakk, 10 years ago

+ initial RCP example
+ EBNFEditedResourceProvider
+ Initial imports and declarations in View
+ corresponding dependencies

  • Property svn:mime-type set to text/plain
File size: 717 bytes
Line 
1package de.ugoe.cs.swe.bnftools.ebnf.standalone;
2
3import org.eclipse.ui.application.ActionBarAdvisor;
4import 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 */
11public 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}
Note: See TracBrowser for help on using the repository browser.