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

editor.IScriptExecuter Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor;

/**
 */
public interface IScriptExecuter
{
  /**
   * Evaluates Gosu source.
   *
   * @param strScript A Gosu expression or scriptlet.
   *
   * @return The result of evaluating the script.
   */
  public String[] evaluate( String strScript );

  /**
   * Executes a Gosu template.
   *
   * @param strTemplate The template
   *
   * @return The resulting content.
   */
  public String executeTemplate( String strTemplate );

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy