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

javax0.jamal.prog.commands.Command Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy