
org.bekwam.talend.commonsrules.RuleList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tcommonsrules Show documentation
Show all versions of tcommonsrules Show documentation
Library to support Rules in tScriptRules and tScriptRulesLoad Talend Open Studio components
The newest version!
package org.bekwam.talend.commonsrules;
import java.util.ArrayList;
import java.util.List;
/**
* @author Carl2
* @version 1.0
* @created 27-Nov-2012 11:23:01 PM
*/
public class RuleList {
private List rules = new ArrayList();
public RuleList() {}
public void addRule(Rule rule) {
if( rules == null ) {
rules = new ArrayList();
}
rules.add( rule );
}
public List getRules() {
return rules;
}
public void setRules(List rules) {
this.rules = rules;
}
@Override
public String toString() {
return "RuleListObject [rules=" + rules + "]";
}
}//end RulesList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy