This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Project Explorer
Martin Malina edited this page Mar 28, 2014
·
3 revisions
- WorkbenchPart / View / WorkbenchView / AbstractExplorer
- implements ReferencedComposite
Instantiate Project Explorer
ProjectExplorer projectExplorer = new ProjectExplorer();
Open Project Explorer
projectExplorer.open();
Select project within Project Explorer
projectExplorer.getProject("testProject").select();
Get all projects contained in Project Explorer
projectExplorer.getProjects();
Check if project is displayed within Project Explorer
boolean containsProject = projectExplorer.containsProject("testProject");