ApplicationWorkbenchWindowAdvisor.java
Go to the documentation of this file.
1 package com.generalrobotix.ui.grxui;
2 
3 import org.eclipse.swt.graphics.Point;
4 import org.eclipse.ui.application.ActionBarAdvisor;
5 import org.eclipse.ui.application.IActionBarConfigurer;
6 import org.eclipse.ui.application.IWorkbenchWindowConfigurer;
7 import org.eclipse.ui.application.WorkbenchWindowAdvisor;
8 
9 
10 public class ApplicationWorkbenchWindowAdvisor extends WorkbenchWindowAdvisor {
11 
12  public ApplicationWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer) {
13  super(configurer);
14  }
15 
16  public ActionBarAdvisor createActionBarAdvisor(
17  IActionBarConfigurer configurer) {
18  return new ApplicationActionBarAdvisor(configurer);
19  }
20 
21  public void preWindowOpen() {
22  IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
23  configurer.setShowStatusLine(false);
24  }
25 
26 }
ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer)
org


openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Sat May 8 2021 02:42:36