for (int j=0; j < includes.length; j++) {
log.debug(" " + includes[j]);
File file = new File(basedir, includes[j]);
compilation.addSourceFile(file);
// Increment the count for each non/java src we found
if (!includes[j].endsWith(".java")) {
count++;
}