throws Exception {
ArrayList<Source> files = new ArrayList<Source>();
Collection<Clazz> expanded = analyzer.getClasses("",
QUERY.NAMED.toString(), "*");
for (final Clazz c : expanded) {
files.add(new Source() {
public File getFile() {
log.debug("Found class "
+ c.getAbsolutePath());
return new File(c.getAbsolutePath());
}