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

net.sf.xmlform.expression.Str Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package net.sf.xmlform.expression;

/**
 * @author Liu Zhikun
 */

public class Str implements Factor {
	private String string;
	
	public String getString() {
		return string;
	}

	public void setString(String string) {
		this.string = string;
	}

	public Value eval(ExpressionContext context) {
		return new StrValue(string);
	}

	public String toString() {
		return string;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy