com.applitools.eyes.VisualLocatorsData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java4 Show documentation
Show all versions of eyes-common-java4 Show documentation
Common code for Applitools Eyes Java SDK projects
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