Package org.jacoco.core.internal.data

Examples of org.jacoco.core.internal.data.CompactDataOutput


   *            binary stream to write execution data to
   * @throws IOException
   *             if the header can't be written
   */
  public ExecutionDataWriter(final OutputStream output) throws IOException {
    this.out = new CompactDataOutput(output);
    writeHeader();
  }
View Full Code Here


   *            binary stream to write execution data to
   * @throws IOException
   *             if the header can't be written
   */
  public ExecutionDataWriter(final OutputStream output) throws IOException {
    this.out = new CompactDataOutput(output);
    writeHeader();
  }
View Full Code Here

   *            binary stream to write execution data to
   * @throws IOException
   *             if the header can't be written
   */
  public ExecutionDataWriter(final OutputStream output) throws IOException {
    this.out = new CompactDataOutput(output);
    writeHeader();
  }
View Full Code Here

TOP

Related Classes of org.jacoco.core.internal.data.CompactDataOutput

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.