Package ij.plugin
Class PlugInInterpreter
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 String
Returns the import statements that are added to the script.abstract String
getName()
Returns the name of this PlugInInterpreter.abstract String
Returns the value returned by the script, if any, or null.abstract String
Returns the version of ImageJ at the time this plugin was created.void
Run script on separate thread.abstract String
Run 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.
-