All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.xmlform.config.CheckDefinition Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
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