Package org.scijava.script.process
Interface ScriptProcessor
-
- All Superinterfaces:
SciJavaPlugin
- All Known Implementing Classes:
DirectiveScriptProcessor,ParameterScriptProcessor,ScriptDirectiveScriptProcessor,ShebangScriptProcessor
public interface ScriptProcessor extends SciJavaPlugin
A script processor defines some sort of processing that primes a particular script for execution.Typically, these plugins look for special directives in the script itself beginning with distinctive character sequences like
#@, and then perform some action in response.- Author:
- Curtis Rueden
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidbegin(ScriptInfo info)default voidend()Stringprocess(String line)
-
-
-
Method Detail
-
begin
void begin(ScriptInfo info)
-
end
default void end()
-
-