01: /**
02: *
03: */package net.refractions.udig.ui;
04:
05: import org.eclipse.ui.IStartup;
06:
07: /**
08: * This class is used to create the application menus.
09: *
10: * @author jeichar
11: */
12: public class CreateMenus implements IStartup {
13:
14: /*
15: * @see org.eclipse.ui.IStartup#earlyStartup()
16: */
17: public void earlyStartup() {
18: // TODO implement this. Add menu to all windows then add a window listener to add menu to windows as
19: // they open.
20: // PlatformUI.getWorkbench().getActiveWorkbenchWindow().get
21: // UiPlugin.getDefault().getMenuFactory().fillMenuBar()
22: }
23:
24: }
|