nl.tudelft.ewi.auta.srf.iface.ScriptExecutionContextFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auta-srf Show documentation
Show all versions of auta-srf Show documentation
A facade for metric script executors
The newest version!
package nl.tudelft.ewi.auta.srf.iface;
/**
* A factory for script execution contexts.
*/
public interface ScriptExecutionContextFactory {
/**
* Creates a new script execution context.
*
* @return the context
*/
ScriptExecutionContext create();
}