Package org.jacoco.core.data

Examples of org.jacoco.core.data.ISessionInfoVisitor


    out.printf("exec file: %s%n", file);
    out.println("CLASS ID         HITS/PROBES   CLASS NAME");

    final FileInputStream in = new FileInputStream(file);
    final ExecutionDataReader reader = new ExecutionDataReader(in);
    reader.setSessionInfoVisitor(new ISessionInfoVisitor() {
      public void visitSessionInfo(final SessionInfo info) {
        out.printf("Session \"%s\": %s - %s%n", info.getId(), new Date(
            info.getStartTimeStamp()),
            new Date(info.getDumpTimeStamp()));
      }
View Full Code Here

TOP

Related Classes of org.jacoco.core.data.ISessionInfoVisitor

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.