com.applitools.eyes.MatchWindowDataWithScreenshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-java-jersey2x Show documentation
Show all versions of eyes-sdk-java-jersey2x Show documentation
Applitools Eyes SDK base for Java
package com.applitools.eyes;
/**
* A container for a MatchWindowData along with the screenshot used for
* creating it. (We specifically avoid inheritance so we don't have to deal
* with serialization issues).
*/
class MatchWindowDataWithScreenshot {
private final MatchWindowData matchWindowData;
private final EyesScreenshot screenshot;
public MatchWindowDataWithScreenshot(MatchWindowData matchWindowData,
EyesScreenshot screenshot) {
this.matchWindowData = matchWindowData;
this.screenshot = screenshot;
}
public MatchWindowData getMatchWindowData() {
return matchWindowData;
}
public EyesScreenshot getScreenshot() {
return screenshot;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy