package io.sloeber.application; import org.eclipse.ui.application.IWorkbenchWindowConfigurer; import org.eclipse.ui.application.WorkbenchAdvisor; import org.eclipse.ui.application.WorkbenchWindowAdvisor; public class ApplicationWorkbenchAdvisor extends WorkbenchAdvisor { private static final String PERSPECTIVE_ID = "io.sloeber.application.perspective"; //$NON-NLS-1$ @Override public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer) { System.out.println("Jaba Was here"); //$NON-NLS-1$ return new ApplicationWorkbenchWindowAdvisor(configurer); } @Override public String getInitialWindowPerspectiveId() { System.out.println("Jaba Was here"); //$NON-NLS-1$ return PERSPECTIVE_ID; } }