java.lang.Object
ij.plugin.PlugInInterpreter
- All Implemented Interfaces:
PlugIn
Plugins that run scripts (e.g., BeanShell, Jython) extend this class.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract StringReturns the import statements that are added to the script.abstract StringgetName()Returns the name of this PlugInInterpreter.abstract StringReturns the value returned by the script, if any, or null.abstract StringReturns the version of ImageJ at the time this plugin was created.voidRun script on separate thread.abstract StringRun script on current thread.
-
Constructor Details
-
PlugInInterpreter
public PlugInInterpreter()
-
-
Method Details
-
run
Run script on separate thread. -
run
Run script on current thread. -
getReturnValue
Returns the value returned by the script, if any, or null. -
getName
Returns the name of this PlugInInterpreter. -
getImports
Returns the import statements that are added to the script. -
getVersion
Returns the version of ImageJ at the time this plugin was created.
-