Package org.eclipse.ui.application

Examples of org.eclipse.ui.application.WorkbenchWindowAdvisor


    return "de.sebastianbenz.task.app.TaskPerspective"; //$NON-NLS-1$
  }

  public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(
      IWorkbenchWindowConfigurer configurer) {
    return new WorkbenchWindowAdvisor(configurer) {
      public void preWindowOpen() {
        super.preWindowOpen();
        IWorkbenchWindowConfigurer wc = getWindowConfigurer();
        wc.setInitialSize(new Point(600, 450));
        wc.setShowCoolBar(true);
View Full Code Here

TOP

Related Classes of org.eclipse.ui.application.WorkbenchWindowAdvisor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.