Package org.jacoco.report.internal.html

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


      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

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

  @Override
  protected String getFileName() {
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.