net.sf.xmlform.config.CheckDefinition Maven / Gradle / Ivy
package net.sf.xmlform.config;
import net.sf.xmlform.util.I18NTexts;
/**
* @author Liu Zhikun
*/
public class CheckDefinition implements Cloneable {
String exp;
private I18NTexts texts=new I18NTexts();
public String getExp() {
return exp;
}
public void setExp(String exp) {
this.exp = exp;
}
public I18NTexts getTexts() {
return texts;
}
public void setTexts(I18NTexts texts) {
this.texts = texts;
}
public Object clone() {
try {
CheckDefinition cloneObj=(CheckDefinition)super.clone();
cloneObj.exp=exp;
cloneObj.texts=(I18NTexts)texts.clone();
return cloneObj;
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy