Package org.jacoco.report.internal.html

Examples of org.jacoco.report.internal.html.HTMLElement.td()


  private void sessionTable(final HTMLElement body) throws IOException {
    final HTMLElement table = body.table(Styles.COVERAGETABLE);
    {
      final HTMLElement tr = table.thead().tr();
      tr.td().text("Session");
      tr.td().text("Start Time");
      tr.td().text("Dump Time");
    }
    final HTMLElement tbody = table.tbody();
    for (final SessionInfo i : sessionInfos) {
View Full Code Here


  private void sessionTable(final HTMLElement body) throws IOException {
    final HTMLElement table = body.table(Styles.COVERAGETABLE);
    {
      final HTMLElement tr = table.thead().tr();
      tr.td().text("Session");
      tr.td().text("Start Time");
      tr.td().text("Dump Time");
    }
    final HTMLElement tbody = table.tbody();
    for (final SessionInfo i : sessionInfos) {
      final HTMLElement tr = tbody.tr();
View Full Code Here

    final HTMLElement table = body.table(Styles.COVERAGETABLE);
    {
      final HTMLElement tr = table.thead().tr();
      tr.td().text("Session");
      tr.td().text("Start Time");
      tr.td().text("Dump Time");
    }
    final HTMLElement tbody = table.tbody();
    for (final SessionInfo i : sessionInfos) {
      final HTMLElement tr = tbody.tr();
      tr.td().span(Styles.EL_SESSION).text(i.getId());
View Full Code Here

      tr.td().text("Dump Time");
    }
    final HTMLElement tbody = table.tbody();
    for (final SessionInfo i : sessionInfos) {
      final HTMLElement tr = tbody.tr();
      tr.td().span(Styles.EL_SESSION).text(i.getId());
      tr.td().text(dateFormat.format(new Date(i.getStartTimeStamp())));
      tr.td().text(dateFormat.format(new Date(i.getDumpTimeStamp())));
    }
  }
View Full Code Here

    }
    final HTMLElement tbody = table.tbody();
    for (final SessionInfo i : sessionInfos) {
      final HTMLElement tr = tbody.tr();
      tr.td().span(Styles.EL_SESSION).text(i.getId());
      tr.td().text(dateFormat.format(new Date(i.getStartTimeStamp())));
      tr.td().text(dateFormat.format(new Date(i.getDumpTimeStamp())));
    }
  }

  private void executionDataTable(final HTMLElement body) throws IOException {
View Full Code Here

    final HTMLElement tbody = table.tbody();
    for (final SessionInfo i : sessionInfos) {
      final HTMLElement tr = tbody.tr();
      tr.td().span(Styles.EL_SESSION).text(i.getId());
      tr.td().text(dateFormat.format(new Date(i.getStartTimeStamp())));
      tr.td().text(dateFormat.format(new Date(i.getDumpTimeStamp())));
    }
  }

  private void executionDataTable(final HTMLElement body) throws IOException {
    final HTMLElement table = body.table(Styles.COVERAGETABLE);
View Full Code Here

  private void executionDataTable(final HTMLElement body) throws IOException {
    final HTMLElement table = body.table(Styles.COVERAGETABLE);
    {
      final HTMLElement tr = table.thead().tr();
      tr.td().text("Class");
      tr.td().text("Id");
    }
    final HTMLElement tbody = table.tbody();
    final ILanguageNames names = context.getLanguageNames();
    for (final ExecutionData e : executionData) {
View Full Code Here

  private void executionDataTable(final HTMLElement body) throws IOException {
    final HTMLElement table = body.table(Styles.COVERAGETABLE);
    {
      final HTMLElement tr = table.thead().tr();
      tr.td().text("Class");
      tr.td().text("Id");
    }
    final HTMLElement tbody = table.tbody();
    final ILanguageNames names = context.getLanguageNames();
    for (final ExecutionData e : executionData) {
      final HTMLElement tr = tbody.tr();
View Full Code Here

      final HTMLElement tr = tbody.tr();
      final String link = index.getLinkToClass(e.getId());
      final String qualifiedName = names.getQualifiedClassName(e
          .getName());
      if (link == null) {
        tr.td().span(Styles.EL_CLASS).text(qualifiedName);
      } else {
        tr.td().a(link, Styles.EL_CLASS).text(qualifiedName);
      }
      final String id = String.format("%016x", Long.valueOf(e.getId()));
      tr.td().code().text(id);
View Full Code Here

      final String qualifiedName = names.getQualifiedClassName(e
          .getName());
      if (link == null) {
        tr.td().span(Styles.EL_CLASS).text(qualifiedName);
      } else {
        tr.td().a(link, Styles.EL_CLASS).text(qualifiedName);
      }
      final String id = String.format("%016x", Long.valueOf(e.getId()));
      tr.td().code().text(id);
    }
  }
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.