public Set<String> getModuleNameSet() {
Set<String> modulenames = new HashSet<String>();
Iterator<Module> it = moduleIterator();
while (it.hasNext()) {
Module mod = it.next();
String modname = mod.getModulename().getName();
modulenames.add(modname);
}
return modulenames;
}