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

cucumber.api.event.EmbedEvent Maven / Gradle / Ivy

There is a newer version: 7.18.0
Show newest version
package cucumber.api.event;

public final class EmbedEvent extends TimeStampedEvent {
    public final byte[] data;
    public final String mimeType;

    public EmbedEvent(Long timeStamp, byte[] data, String mimeType) {
        super(timeStamp);
        this.data = data;
        this.mimeType = mimeType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy