private static Set<String> getZimletNames(List<Zimlet> zimlets) {
   Set<String> names = new LinkedHashSet<String>();
   for (Zimlet zimlet : zimlets) {
     names.add(zimlet.getName());
   }
   return names;
 }