com.applitools.eyes.logging.LogSessionsClientEvents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java3 Show documentation
Show all versions of eyes-common-java3 Show documentation
Common code for Applitools Eyes Java SDK projects
package com.applitools.eyes.logging;
import com.applitools.utils.ArgumentGuard;
import java.util.ArrayList;
import java.util.List;
public class LogSessionsClientEvents {
private final List events;
public LogSessionsClientEvents() {
events = new ArrayList<>();
}
public int size() {
return events.size();
}
public List getEvents() {
return events;
}
public void addEvent(ClientEvent event) {
ArgumentGuard.notNull(event, "event");
events.add(event);
}
public void clear() {
events.clear();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy