Code Search for Developers
 
 
  

IMonkeyScript.java from Groovy Eclipse Monkey at Krugle


Show IMonkeyScript.java syntax highlighted

package net.sf.groovyMonkey.lang;
import java.util.Map;
import net.sf.groovyMonkey.ScriptMetadata;
import org.apache.bsf.BSFException;
import org.eclipse.core.resources.IFile;

public interface IMonkeyScript
{
    public IMonkeyScript setBinding( final ScriptMetadata metadata,
                                     final Map< String, Object > map );
    public IFile getScript();
    public IFile script();
    /**
     * Runs the script with the given variable bindings and classloaders as given in the 
     * DOMs provided in the script metadata.
     * @param binding
     * @param classLoaders
     * @param script
     */
    public Object run()
    throws BSFException;
}




See more files for this project here

Groovy Eclipse Monkey

Groovy Monkey is a Utility for Eclipse that enables you to create scripts in Groovy, Beanshell, Python or Ruby to run directly in Eclipse. This tool can be used to Eclipse API exploration, automation scripts, and rapid plugin prototyping.

Project homepage: http://sourceforge.net/projects/groovy-monkey
Programming language(s): Groovy,Java,XML
License: other

  IMonkeyScript.java
  IMonkeyScriptFactory.java
  MonkeyScript.java
  MonkeyScriptFactoryAbstract.java