public CoverageStatisticsBean()

in report-builder/src/jetbrains/coverage/report/impl/CoverageStatisticsBean.java [67:80]


  public CoverageStatisticsBean(@Nullable CoverageStatistics prevStats) {
    myValues.put(TOTAL_CLASSES, new Counter(-1));
    myValues.put(TOTAL_METHODS, new Counter(-1));
    myValues.put(TOTAL_BLOCKS, new Counter(-1));
    myValues.put(TOTAL_LINES, new Counter(-1));
    myValues.put(TOTAL_STATEMENTS, new Counter(-1));

    myValues.put(COVERED_CLASSES, new Counter(-1));
    myValues.put(COVERED_METHODS, new Counter(-1));
    myValues.put(COVERED_BLOCKS, new Counter(-1));
    myValues.put(COVERED_LINES, new Counter(-1));
    myValues.put(COVERED_STATEMENTS, new Counter(-1));
    myPrevStats = prevStats != null ? prevStats : NULL_STATS;
  }