ua.windriver.util.PropertyConditions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windriver-java Show documentation
Show all versions of windriver-java Show documentation
A Java client for the WinDriver Agent. This client allows you to automate Windows desktop applications
using Java.
The newest version!
package ua.windriver.util;
import ua.windriver.model.automation.Condition;
import ua.windriver.model.automation.Property;
import java.util.ArrayList;
import java.util.List;
public class PropertyConditions {
private List conditions;
public PropertyConditions() {
conditions = new ArrayList<>();
}
public PropertyConditions(Property property, String value) {
conditions = new ArrayList<>();
conditions.add(new Condition(property, value));
}
public PropertyConditions add(Property property, String value) {
conditions.add(new Condition(property, value));
return this;
}
public List getConditions() {
return conditions;
}
public void setConditions(List conditions) {
this.conditions = conditions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy