rootScope.visibleDfns(ElementKind.CLASS);
scala.collection.Seq<AstDfn> tmpls = rootScope.visibleDfns(ElementKind.CLASS);
if (!tmpls.isEmpty()) {
scala.collection.Iterator itr = tmpls.iterator();
while (itr.hasNext()) {
AstDfn tmpl = (AstDfn) itr.next();
if (classes[0].length() > 0) {
classes[0] = classes[0] + " "; // NOI18N
}
classes[0] = classes[0] + tmpl.getName().toString().replace('.', '/') + "*.class"; // NOI18N
}
}
}
});
} catch (ParseException ex) {