*
* @param projectClasspaths
* @param target
*/
public void extractInterfaces(Collection<URI> projectClasspaths, String target) {
final ClassPathLocator cpl = new ClassPathLocator(null, null);
final Collection<AbstractClassPathLocation> allLocations = new ArrayList<AbstractClassPathLocation>();
// Locate all classpath elements
for (URI uri : projectClasspaths) {
allLocations.addAll(cpl.findBelow(uri));
}
// Get all elements
for (AbstractClassPathLocation l : allLocations) {
final Collection<String> cn = l.listAllEntries();