com.applitools.eyes.visualgrid.model.IosDeviceTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-ufg-java5 Show documentation
Show all versions of eyes-ufg-java5 Show documentation
UFG module of Applitools java sdk
package com.applitools.eyes.visualgrid.model;
public class IosDeviceTarget extends DeviceTarget {
private IosVersion version;
protected IosDeviceTarget(String deviceName) {
super(deviceName);
}
public IosDeviceTarget version(IosVersion version) {
this.version = version;
return this;
}
public IosVersion getVersion() {
return version;
}
@Override
public IosDeviceTarget orientation(ScreenOrientation orientation) {
return (IosDeviceTarget) super.orientation(orientation);
}
@Override
public IosDeviceTarget landscape() {
return (IosDeviceTarget) super.landscape();
}
@Override
public IosDeviceTarget portrait() {
return (IosDeviceTarget) super.portrait();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy