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

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

There is a newer version: 4.14.0
Show newest version
package com.applitools.eyes;

import java.util.List;

public class VisualLocatorsData {

    private String appName;

    private String imageUrl;

    private boolean firstOnly;

    private List locatorNames;

    public VisualLocatorsData() {
    }

    public VisualLocatorsData(String appName, String imageUrl, boolean firstOnly, List locatorNames) {
        this.appName = appName;
        this.imageUrl = imageUrl;
        this.firstOnly = firstOnly;
        this.locatorNames = locatorNames;
    }

    public String getAppName() {
        return appName;
    }

    public void setAppName(String appName) {
        this.appName = appName;
    }

    public String getImageUrl() {
        return imageUrl;
    }

    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }

    public boolean isFirstOnly() {
        return firstOnly;
    }

    public void setFirstOnly(boolean firstOnly) {
        this.firstOnly = firstOnly;
    }

    public List getLocatorNames() {
        return locatorNames;
    }

    public void setLocatorNames(List locatorNames) {
        this.locatorNames = locatorNames;
    }

    @Override
    public String toString() {
        return "VisualLocatorsData{" +
                "appName='" + appName + '\'' +
                ", imageUrl='" + imageUrl + '\'' +
                ", firstOnly=" + firstOnly +
                ", locatorNames=" + locatorNames +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy