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

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

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