javax0.jamal.prog.commands.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jamal-prog Show documentation
Show all versions of jamal-prog Show documentation
Jamal module for Programmatic Extension
package javax0.jamal.prog.commands;
import javax0.jamal.api.BadSyntax;
/**
* A command that the interpreter can execute
*/
public interface Command {
/**
* Execute the command.
*
* @param context the Jamal processing environment
* @return the result of the execution
*/
String execute(Context context) throws BadSyntax;
}