All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.ant.tasks.junit4.events.AppendStdErrEvent Maven / Gradle / Ivy

The newest version!
package com.carrotsearch.ant.tasks.junit4.events;


@SuppressWarnings("serial")
public class AppendStdErrEvent extends AbstractEvent {
  private final byte[] chunk;

  public AppendStdErrEvent(byte[] b, int off, int len) {
    super(EventType.APPEND_STDERR);
    chunk = new byte [len];
    System.arraycopy(b, off, chunk, 0, len);
  }

  public byte[] getChunk() {
    return chunk;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy