I am currently building an RCP application, which has been quite successful till now. I face two issues (would like Add and Remove one feature from my RCP application).
- My "New -Wizard" shows Plugin-Development which I would like to remove
- I would like to add a Git capability to my RCP application (I tried to use Egit, but then Git only shows in new->Select a Wizard-> Git -> Git Repository).
*I'm a beginner in git. My intention is that users can add/merge their files to a central repository in Github.
My
ApplicationWorkbehcnAdvisor.java
package kr;
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 = "kr.perspective"; //$NON-NLS-1$
// private static final String PERSPECTIVE_ID = "org.eclipse.jdt.ui"; //$NON-NLS-1$
public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer) {
return new ApplicationWorkbenchWindowAdvisor(configurer);
}
public String getInitialWindowPerspectiveId() {
return PERSPECTIVE_ID;
}
}