Package org.jacoco.report.internal.html

Examples of org.jacoco.report.internal.html.HTMLDocument.attr()


   * @throws IOException
   */
  public void render() throws IOException {
    final HTMLDocument doc = new HTMLDocument(
        folder.createFile(getFileName()), context.getOutputEncoding());
    doc.attr("lang", context.getLocale().getLanguage());
    head(doc.head());
    body(doc.body());
    doc.close();
  }

View Full Code Here


   *             if the page can't be written
   */
  public void render() throws IOException {
    final HTMLDocument doc = new HTMLDocument(
        folder.createFile(getFileName()), context.getOutputEncoding());
    doc.attr("lang", context.getLocale().getLanguage());
    head(doc.head());
    body(doc.body());
    doc.close();
  }

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.