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

org.bitbucket.gkutiel.at.CmdText Maven / Gradle / Ivy

package org.bitbucket.gkutiel.at;

public class CmdText extends Cmd {

	private final String txt;

	public CmdText(final String txt) {
		this.txt = txt;
	}

	@Override public String eval(final Context ctx) {
		return txt;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy