package com.laytonsmith.core;
/**
*
*
*/
public interface MethodScriptComplete {
/**
* This function is called when the MethodScript has finished. Any output generated
* by the script is sent here. If the script generated an error, null is sent.
* If the script ran successfully, but did not return any output, an empty string
* is sent.
*/
public void done(String output);
}