Package org.jacoco.report.internal.html

Examples of org.jacoco.report.internal.html.HTMLElement


  public void render(final HTMLElement parent,
      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);
    footer(table, total, resources, base);
    body(table, sortedItems, resources, base);
  }
View Full Code Here


  }

  private void header(final HTMLElement table,
      final List<? extends ITableItem> items, final ICoverageNode total)
      throws IOException {
    final HTMLElement tr = table.thead().tr();
    for (final Column c : columns) {
      c.init(tr, items, total);
    }
  }
View Full Code Here

  }

  private void footer(final HTMLElement table, final ICoverageNode total,
      final Resources resources, final ReportOutputFolder base)
      throws IOException {
    final HTMLElement tr = table.tfoot().tr();
    for (final Column c : columns) {
      c.footer(tr, total, resources, base);
    }
  }
View Full Code Here

  }

  private void body(final HTMLElement table,
      final List<? extends ITableItem> items, final Resources resources,
      final ReportOutputFolder base) throws IOException {
    final HTMLElement tbody = table.tbody();
    int idx = 0;
    for (final ITableItem item : items) {
      final HTMLElement tr = tbody.tr();
      for (final Column c : columns) {
        c.body(tr, idx, item, resources, base);
      }
      idx++;
    }
View Full Code Here

    void init(final HTMLElement tr, final List<? extends ITableItem> items,
        final ICoverageNode total) throws IOException {
      visible = renderer.init(items, total);
      if (visible) {
        index.init(items);
        final HTMLElement td = tr.td(headerStyle);
        td.attr("id", String.valueOf(idprefix));
        td.attr("onclick", "toggleSort(this)");
        td.text(header);
      }
    }
View Full Code Here

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

    headExtra(head);
  }

  private void body(final HTMLElement body) throws IOException {
    body.attr("onload", getOnload());
    final HTMLElement navigation = body.div(Styles.BREADCRUMB);
    navigation.attr("id", "breadcrumb");
    infoLinks(navigation.span(Styles.RIGHT));
    breadcrumb(navigation, folder);
    body.h1().text(getLinkLabel());
    content(body);
    footer(body);
  }
View Full Code Here

      div.text(" > ");
    }
  }

  private void footer(final HTMLElement body) throws IOException {
    final HTMLElement footer = body.div(Styles.FOOTER);
    final HTMLElement versioninfo = footer.span(Styles.RIGHT);
    versioninfo.text("Created with ");
    versioninfo.a(JaCoCo.HOMEURL).text("JaCoCo");
    versioninfo.text(" ").text(JaCoCo.VERSION);
    footer.text(context.getFooterText());
  }
View Full Code Here

      executionDataTable(body);
    }
  }

  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();
      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

      tr.td().text(dateFormat.format(new Date(i.getDumpTimeStamp())));
    }
  }

  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();
      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

TOP

Related Classes of org.jacoco.report.internal.html.HTMLElement

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.