Package org.jacoco.report.html

Examples of org.jacoco.report.html.HTMLElement.attr()


      final List<? extends ITableItem> items, final ICoverageNode total,
      final Resources resources, final ReportOutputFolder base)
      throws IOException {
    final List<? extends ITableItem> sortedItems = sort(items);
    final HTMLElement table = parent.table(Styles.COVERAGETABLE);
    table.attr("id", "coveragetable");
    header(table, sortedItems, total, resources, base);
    footer(table, total, resources, base);
    body(table, sortedItems, resources, base);
  }
View Full Code Here


      if (visible) {
        if (index != null) {
          index.init(items);
        }
        final HTMLElement td = tr.td(headerStyle);
        td.attr("id", String.valueOf(idprefix));
        if (index != null) {
          td.attr("onclick", "toggleSort(this)");
        }
        td.text(header);
      }
View Full Code Here

          index.init(items);
        }
        final HTMLElement td = tr.td(headerStyle);
        td.attr("id", String.valueOf(idprefix));
        if (index != null) {
          td.attr("onclick", "toggleSort(this)");
        }
        td.text(header);
      }
    }
View Full Code Here

        final Resources resources, final ReportOutputFolder base)
        throws IOException {
      if (visible) {
        final HTMLElement td = tr.td(style);
        if (index != null) {
          td.attr("id",
              idprefix + String.valueOf(index.getPosition(idx)));
        }
        renderer.item(td, item, resources, base);
      }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.