
com.crawljax.web.model.ClickRule Maven / Gradle / Ivy
The newest version!
package com.crawljax.web.model;
import java.util.List;
public class ClickRule {
private RuleType rule = RuleType.click;
private String elementTag;
private List conditions;
public enum RuleType {
click, noClick
}
/**
* @return the rule
*/
public RuleType getRule() {
return rule;
}
/**
* @param rule
* the rule to set
*/
public void setRule(RuleType rule) {
this.rule = rule;
}
/**
* @return the elementTag
*/
public String getElementTag() {
return elementTag;
}
/**
* @param elementTag
* the elementTag to set
*/
public void setElementTag(String elementTag) {
this.elementTag = elementTag;
}
/**
* @return the conditions
*/
public List getConditions() {
return conditions;
}
/**
* @param conditions
* the conditions to set
*/
public void setConditions(List conditions) {
this.conditions = conditions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy