com.applitools.eyes.visualgridclient.model.EmulationBaseInfo 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.visualgridclient.model;
public abstract class EmulationBaseInfo {
ScreenOrientation screenOrientation;
EmulationBaseInfo(ScreenOrientation screenOrientation) {
this.screenOrientation = screenOrientation;
}
public ScreenOrientation getScreenOrientation() {
return screenOrientation;
}
public void setScreenOrientation(ScreenOrientation screenOrientation) {
this.screenOrientation = screenOrientation;
}
public abstract String getDeviceName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy