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

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

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

abstract class TimeStampedEvent implements Event {
    private final Long timeStamp;

    TimeStampedEvent(Long timeStamp) {
        this.timeStamp = timeStamp;
    }

    @Override
    public Long getTimeStamp() {
        return timeStamp;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy