Package org.jacoco.report.internal.xml

Examples of org.jacoco.report.internal.xml.XMLReportNodeHandler


    if (output == null) {
      throw new IllegalStateException("No report output set.");
    }
    final XMLElement root = new XMLDocument("report", PUBID, SYSTEM,
        outputEncoding, true, output.createFile());
    return new XMLReportNodeHandler(root, rootNode) {
      @Override
      protected void insertElementsBefore(final XMLElement element)
          throws IOException {
        writeSessionInfos(element, sessionInfos);
      }
View Full Code Here

TOP

Related Classes of org.jacoco.report.internal.xml.XMLReportNodeHandler

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.