Package org.jacoco.core.internal.data

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


   *
   * @param input
   *            input stream to read execution data from
   */
  public ExecutionDataReader(final InputStream input) {
    this.in = new CompactDataInput(input);
  }
View Full Code Here


   *
   * @param input
   *            input stream to read execution data from
   */
  public ExecutionDataReader(final InputStream input) {
    this.in = new CompactDataInput(input);
  }
View Full Code Here

   *            input stream to read execution data from
   * @throws IOException
   *             if the stream does not have a valid header
   */
  public ExecutionDataReader(final InputStream input) throws IOException {
    this.in = new CompactDataInput(input);
    in.readByte();
    readHeader();
  }
View Full Code Here

   *
   * @param input
   *            input stream to read execution data from
   */
  public ExecutionDataReader(final InputStream input) {
    this.in = new CompactDataInput(input);
  }
View Full Code Here

TOP

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

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.