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

com.applitools.eyes.visualgrid.model.ChromeEmulationInfo Maven / Gradle / Ivy

package com.applitools.eyes.visualgrid.model;

public class ChromeEmulationInfo extends EmulationBaseInfo implements IRenderingBrowserInfo {

    private DeviceName deviceName;

    public ChromeEmulationInfo(DeviceName deviceName, ScreenOrientation screenOrientation) {
        super(screenOrientation);
        this.deviceName = deviceName;
    }

    public String getDeviceName() {
        return deviceName.getName();
    }

    public void setDeviceName(DeviceName deviceName) {
        this.deviceName = deviceName;
    }

    public ScreenOrientation getScreenOrientation() {
        return screenOrientation;
    }

    public void setScreenOrientation(ScreenOrientation screenOrientation) {
        this.screenOrientation = screenOrientation;
    }

    @Override
    public String toString() {
        return "ChromeEmulationInfo{" +
                "deviceName=" + deviceName +
                ", screenOrientation=" + screenOrientation +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy