getLogger().debug("addresult " + file);
if ( isExcluded( file ) ) {
getLogger().debug("ignoring " + file + " from touch");
} else {
ClassData classData = this.coverageProjectData.getOrCreateClassData( ApparatUtil.toClassname( file ) );
for ( Integer touch : touchs )
{
classData.touch( touch, 1 );
}
}
}