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
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");