Package | Description |
---|---|
edu.wisc.ssec.mcidasv.jython |
Modifier and Type | Field and Description |
---|---|
private Interpreter |
Runner.interpreter
The Jython interpreter that will actually run the queued commands.
|
Modifier and Type | Field and Description |
---|---|
private Map<String,Interpreter> |
OutputStreamDemux.interpreterMap |
Modifier and Type | Method and Description |
---|---|
void |
OutputStreamDemux.addStream(Console console,
Interpreter interpreter,
OutputStreamDemux.OutputType type) |
void |
RegisterCallbackCommand.execute(Interpreter interpreter) |
void |
LoadFileCommand.execute(Interpreter interpreter)
Tries to load the file specified by
path using moduleName
for the __name__ attribute. |
void |
LineCommand.execute(Interpreter interpreter)
Attempts to execute a line of Jython.
|
void |
InjectCommand.execute(Interpreter interpreter)
Attempts to inject a variable created in Java into the local namespace
of
interpreter . |
void |
EjectCommand.execute(Interpreter interpreter)
Attempts to remove whatever Jython knows as
name from the local
namespace of interpreter . |
abstract void |
Command.execute(Interpreter interpreter)
Hook to provide various implementations of command execution.
|
void |
BatchCommand.execute(Interpreter interpreter) |