Index: src/org/eclipse/update/internal/configurator/PlatformConfiguration.java =================================================================== RCS file: /home/eclipse/org.eclipse.update.configurator/src/org/eclipse/update/internal/configurator/PlatformConfiguration.java,v retrieving revision 1.75 diff -u -r1.75 PlatformConfiguration.java --- src/org/eclipse/update/internal/configurator/PlatformConfiguration.java 25 May 2005 15:23:46 -0000 1.75 +++ src/org/eclipse/update/internal/configurator/PlatformConfiguration.java 7 Jun 2005 17:45:34 -0000 @@ -414,6 +414,21 @@ return (URL[]) path.toArray(new URL[0]); } + public Set getPluginPaths() { + + HashSet paths = new HashSet(); + ISiteEntry[] sites = getConfiguredSites(); + + for (int i = 0; i < sites.length; i++) { + String[] plugins = sites[i].getPlugins(); + for (int j = 0; j < plugins.length; j++) { + paths.add(plugins[j]); + } + } + + return paths; + } + /* * A variation of the getPluginPath, but it returns the actual plugin entries