- 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 java.lang.StringgetImports()Returns the import statements that are added to the script.abstract java.lang.StringgetName()Returns the name of this PlugInInterpreter.abstract java.lang.StringgetReturnValue()Returns the value returned by the script, if any, or null.abstract java.lang.StringgetVersion()Returns the version of ImageJ at the time this plugin was created.voidrun(java.lang.String script)Run script on separate thread.abstract java.lang.Stringrun(java.lang.String script, java.lang.String arg)Run script on current thread.
-
-
-
Method Detail
-
run
public void run(java.lang.String script)
Run script on separate thread.
-
run
public abstract java.lang.String run(java.lang.String script, java.lang.String arg)Run script on current thread.
-
getReturnValue
public abstract java.lang.String getReturnValue()
Returns the value returned by the script, if any, or null.
-
getName
public abstract java.lang.String getName()
Returns the name of this PlugInInterpreter.
-
getImports
public abstract java.lang.String getImports()
Returns the import statements that are added to the script.
-
getVersion
public abstract java.lang.String getVersion()
Returns the version of ImageJ at the time this plugin was created.
-
-