![JAR search and dependency download from the Maven repository](/logo.png)
com.carrotsearch.ant.tasks.junit4.events.AppendStdOutEvent Maven / Gradle / Ivy
The newest version!
package com.carrotsearch.ant.tasks.junit4.events;
@SuppressWarnings("serial")
public class AppendStdOutEvent extends AbstractEvent {
private final byte[] chunk;
public AppendStdOutEvent(byte[] b, int off, int len) {
super(EventType.APPEND_STDOUT);
chunk = new byte [len];
System.arraycopy(b, off, chunk, 0, len);
}
public byte[] getChunk() {
return chunk;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy