p2izing the editor
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor.designproposal1 / src / eu / etaxonomy / taxeditor / designproposal1 / ApplicationWorkbenchAdvisor.java
1 package eu.etaxonomy.taxeditor.designproposal1;
2
3 import org.eclipse.ui.application.IWorkbenchWindowConfigurer;
4 import org.eclipse.ui.application.WorkbenchAdvisor;
5 import org.eclipse.ui.application.WorkbenchWindowAdvisor;
6
7 public class ApplicationWorkbenchAdvisor extends WorkbenchAdvisor {
8
9 private static final String PERSPECTIVE_ID = "eu.etaxonomy.taxeditor.designproposal1.perspective";
10
11 public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(
12 IWorkbenchWindowConfigurer configurer) {
13 return new ApplicationWorkbenchWindowAdvisor(configurer);
14 }
15
16 public String getInitialWindowPerspectiveId() {
17 return PERSPECTIVE_ID;
18 }
19
20 }