Package org.jacoco.report.html.table

Examples of org.jacoco.report.html.table.Table


    }
    return table;
  }

  private Table createTable() {
    final Table table = new Table();
    table.add("Element", null, new LabelColumn(), false);
    table.add("Missed Instructions", null, new BarColumn(INSTRUCTION,
        locale), true);
    table.add("Cov.", Styles.CTR2,
        new PercentageColumn(INSTRUCTION, locale), false);
    addMissedTotalColumns(table, "Classes", CLASS);
    addMissedTotalColumns(table, "Methods", METHOD);
    addMissedTotalColumns(table, "Blocks", BLOCK);
    addMissedTotalColumns(table, "Lines", LINE);
View Full Code Here

TOP

Related Classes of org.jacoco.report.html.table.Table

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.