Class JythonScriptEngine
java.lang.Object
org.eclipse.core.runtime.PlatformObject
org.eclipse.core.internal.jobs.InternalJob
org.eclipse.core.runtime.jobs.Job
org.eclipse.ease.AbstractScriptEngine
org.eclipse.ease.AbstractReplScriptEngine
org.eclipse.ease.lang.python.jython.JythonScriptEngine
- All Implemented Interfaces:
Comparable
,org.eclipse.core.runtime.IAdaptable
,IReplEngine
,IScriptEngine
public class JythonScriptEngine extends AbstractReplScriptEngine
-
Field Summary
Fields inherited from class org.eclipse.core.runtime.jobs.Job
ASYNC_FINISH, BUILD, DECORATE, INTERACTIVE, LONG, NONE, RUNNING, SHORT, SLEEPING, WAITING
Fields inherited from interface org.eclipse.ease.IScriptEngine
TRACE_SCRIPT_ENGINE
-
Constructor Summary
Constructors Constructor Description JythonScriptEngine()
-
Method Summary
Modifier and Type Method Description void
registerJar(URL url)
Register a jar file and add it to the classpath.void
setErrorStream(OutputStream errorStream)
Set the default error stream for the interpreter.void
setInputStream(InputStream inputStream)
Set the default input stream for the interpreter.void
setOutputStream(OutputStream outputStream)
Set the default output stream for the interpreter.void
terminateCurrent()
Stops the currently executed piece of code.String
toString(Object object)
Get the String representation of a script object.Methods inherited from class org.eclipse.ease.AbstractReplScriptEngine
getDefinedVariables, getLastExecutionResult, getTerminateOnIdle, getType, setTerminateOnIdle, terminate
Methods inherited from class org.eclipse.ease.AbstractScriptEngine
addExecutionListener, addSecurityCheck, execute, getCurrentScriptEngine, getDescription, getErrorStream, getExecutedFile, getInputStream, getLaunch, getMonitor, getOutputStream, getStackTrace, getVariable, getVariables, hasVariable, inject, isFinished, joinEngine, joinEngine, removeExecutionListener, setCloseStreamsOnTerminate, setEngineDescription, setExecutionRootFile, setLaunch, setVariable
Methods inherited from class org.eclipse.core.runtime.jobs.Job
addJobChangeListener, belongsTo, cancel, create, create, createSystem, createSystem, done, getJobGroup, getJobManager, getName, getPriority, getProperty, getResult, getRule, getState, getThread, isBlocking, isSystem, isUser, join, join, removeJobChangeListener, schedule, schedule, setJobGroup, setName, setPriority, setProgressGroup, setProperty, setRule, setSystem, setThread, setUser, shouldRun, shouldSchedule, sleep, toString, wakeUp, wakeUp, yieldRule
Methods inherited from class org.eclipse.core.internal.jobs.InternalJob
compareTo
Methods inherited from class org.eclipse.core.runtime.PlatformObject
getAdapter
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.ease.IScriptEngine
addExecutionListener, addSecurityCheck, execute, getDescription, getErrorStream, getExecutedFile, getInputStream, getLaunch, getMonitor, getName, getOutputStream, getVariable, getVariables, hasVariable, inject, isFinished, joinEngine, joinEngine, removeExecutionListener, schedule, setCloseStreamsOnTerminate, setVariable
-
Field Details
-
ENGINE_ID
- See Also:
- Constant Field Values
-
-
Constructor Details
-
JythonScriptEngine
public JythonScriptEngine()
-
-
Method Details
-
terminateCurrent
public void terminateCurrent()Description copied from interface:IScriptEngine
Stops the currently executed piece of code. Will continue to execute the next scheduled piece of code. -
setOutputStream
Description copied from interface:IScriptEngine
Set the default output stream for the interpreter.- Specified by:
setOutputStream
in interfaceIScriptEngine
- Overrides:
setOutputStream
in classAbstractScriptEngine
- Parameters:
outputStream
- default output stream
-
setInputStream
Description copied from interface:IScriptEngine
Set the default input stream for the interpreter.- Specified by:
setInputStream
in interfaceIScriptEngine
- Overrides:
setInputStream
in classAbstractScriptEngine
- Parameters:
inputStream
- default input stream
-
setErrorStream
Description copied from interface:IScriptEngine
Set the default error stream for the interpreter.- Specified by:
setErrorStream
in interfaceIScriptEngine
- Overrides:
setErrorStream
in classAbstractScriptEngine
- Parameters:
errorStream
- default error stream
-
registerJar
Description copied from interface:IScriptEngine
Register a jar file and add it to the classpath. After registering, classes within the jar file shall be usable within the script.- Parameters:
url
- url to load jar file from
-
toString
Description copied from interface:IReplEngine
Get the String representation of a script object. A script object can be an execution result or a variable content.- Specified by:
toString
in interfaceIReplEngine
- Overrides:
toString
in classAbstractReplScriptEngine
- Parameters:
object
- script object- Returns:
- String representation
-