website.automate.waml.io.model.main.criteria.EnterCriteria Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waml-io Show documentation
Show all versions of waml-io Show documentation
(De)Serializer of the web automation markup language (WAML) for Java
The newest version!
package website.automate.waml.io.model.main.criteria;
public class EnterCriteria extends FilterCriteria {
public EnterCriteria() {
super();
}
public EnterCriteria(String selector) {
super(selector);
}
private String input;
private String clear;
public String getInput() {
return input;
}
public void setInput(String input) {
this.input = input;
}
public String getClear() {
return clear;
}
public void setClear(String clear) {
this.clear = clear;
}
@Override
public boolean canBeShortNotated() {
return input == null && super.canBeShortNotated();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy