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

com.applitools.eyes.MatchWindowDataWithScreenshot Maven / Gradle / Ivy

There is a newer version: 2.51
Show newest version
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