Package net.sourceforge.cobertura.coveragedata

Examples of net.sourceforge.cobertura.coveragedata.ClassData


      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 );
          }
      }
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.cobertura.coveragedata.ClassData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.