
website.automate.waml.io.model.main.action.EnterAction 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.action;
import website.automate.waml.io.model.main.criteria.EnterCriteria;
public class EnterAction extends FilterAction {
static final String TYPE_NAME = "enter";
private EnterCriteria enter;
public EnterCriteria getEnter() {
return enter;
}
public void setEnter(EnterCriteria enter) {
this.enter = enter;
}
@Override
public String getTypeName() {
return TYPE_NAME;
}
@Override
public EnterCriteria getFilter() {
return enter;
}
@Override
public void setFilter(EnterCriteria filter) {
this.enter = filter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy