-
Notifications
You must be signed in to change notification settings - Fork 43
Package Explorer
Martin Malina edited this page Mar 28, 2014
·
8 revisions
- WorkbenchPart / View / WorkbenchView / AbstractExplorer
- implements ReferencedComposite
Instantiate Package Explorer
PackageExplorer packageExplorer = new PackageExplorer();
Open Package Explorer
packageExplorer.open();
Select project within Package Explorer
packageExplorer.getProject("testProject").select();
Get all projects contained in Package Explorer
packageExplorer.getProjects();
Check if project is displayed within Package Explorer
boolean containsProject = packageExplorer.containsProject("testProject");