- java.lang.Object
-
- ij.plugin.PlugInInterpreter
-
-
Constructor Summary
Constructors Constructor Description PlugInInterpreter()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract StringgetImports()Returns the import statements that are added to the script.abstract StringgetName()Returns the name of this PlugInInterpreter.abstract StringgetReturnValue()Returns the value returned by the script, if any, or null.abstract StringgetVersion()Returns the version of ImageJ at the time this plugin was created.voidrun(String script)Run script on separate thread.abstract Stringrun(String script, String arg)Run script on current thread.
-
-
-
Method Detail
-
run
public void run(String script)
Run script on separate thread.
-
getReturnValue
public abstract String getReturnValue()
Returns the value returned by the script, if any, or null.
-
getName
public abstract String getName()
Returns the name of this PlugInInterpreter.
-
getImports
public abstract String getImports()
Returns the import statements that are added to the script.
-
getVersion
public abstract String getVersion()
Returns the version of ImageJ at the time this plugin was created.
-
-