Eclipse PDE’s API provides various functionalities to query different meta-data relevant to the currently active Eclipse workspace. Using following code snippet, all the projects of the current workspace can be retrieved as an array of IProject
:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IProject[] allProjects = ResourcesPlugin.getWorkspace() | |
.getRoot() | |
.getProjects(); |
Further processing on this array can be performed e.g., to filter only open projects, as follows :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (IProject p : allProjects){ | |
if(p.isOpen()) | |
activeProjects.add(p); | |
} |