Package | Description |
---|---|
org.rexxla.bsf.engines.rexx | |
org.rexxla.bsf.engines.rexx.jsr223 |
Modifier and Type | Field and Description |
---|---|
(package private) RexxProxy |
RexxException.rexxConditionObject
Contains a RexxProxy object for the Rexx condition object.
|
Modifier and Type | Method and Description |
---|---|
RexxProxy |
RexxException.getRexxConditionObject()
Getter method.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
RexxEngine.call(RexxProxy proxy,
java.lang.reflect.Method methodObject,
java.lang.Object[] args)
Allows forwarding a messages to a RexxProxy using the method name of the supplied
methodObject object with the supplied arguments , if any. |
java.lang.Object |
RexxEngine.call(RexxProxy proxy,
java.lang.Object javaObject,
java.lang.String methodName,
java.lang.String methodDescriptor,
java.lang.Object[] args)
Allows forwarding a messages to a RexxProxy using the supplied
methodName
the supplied arguments , if any. |
Constructor and Description |
---|
RexxException(int reason,
java.lang.String message,
RexxProxy rexxConditionObject) |
RexxException(java.lang.String message,
RexxProxy rexxConditionObject)
Creates a RexxException with a message, and a RexxProxy allowing to access the Rexx condition object
for further inspection.
|
Modifier and Type | Field and Description |
---|---|
(package private) RexxProxy |
RexxScriptEngine.latestRexxPackage
This field stores the Rexx package of the last Rexx script that got compiled and added the
previous Rexx package stored in this field prior to it.
|
(package private) RexxProxy |
RexxCompiledScript.rexxPackageObject
A
RexxProxy representing the script's package (a Rexx package object). |
(package private) RexxProxy |
RexxCompiledScript.rexxScriptObject
The
RexxProxy representing the compiled (tokenized) script (a Rexx routine object). |
Modifier and Type | Method and Description |
---|---|
(package private) RexxProxy |
RexxScriptEngine.getCreateRoutine()
Getter method to return
rexxCreateRoutineCode . |
(package private) RexxProxy |
RexxScriptEngine.getCreateRoutineAndPackage()
Getter method to return
rexxCreateRoutineAndPackage . |
(package private) RexxProxy |
RexxScriptEngine.getCreateSlotArgument()
Getter method to return
rexxCreateSlotArgument . |
(package private) RexxProxy |
RexxScriptEngine.getMonitorWrapper()
Getter method to return the ooRexx routine.
|
RexxProxy |
RexxCompiledScript.getPackageObject()
Getter for the
RexxProxy representing the Rexx routine object the script got compiled (tokenized) into. |
(package private) RexxProxy |
RexxScriptEngine.getRedirectStandardFiles()
Getter method to return
rexxRedirectStandardFiles . |
(package private) RexxProxy |
RexxScriptEngine.getRoutineWrapper()
Getter method to return the ooRexx routine.
|
RexxProxy |
RexxCompiledScript.getScriptObject()
Getter for the
RexxProxy representing the Rexx routine object the script got compiled (tokenized) to. |
Modifier and Type | Method and Description |
---|---|
(package private) java.lang.String |
RexxCompiledScript.createRexxLikeConditionMessage(RexxProxy rco)
Utility method that creates the Rexx like condition message from the ooRexx condition object.
|
Constructor and Description |
---|
RexxCompiledScript(RexxScriptEngine scriptEngine,
java.lang.String scriptSource,
java.lang.String filename,
boolean bSupplyBSFExceptionObject,
RexxProxy scriptRexxProxy,
RexxProxy scriptRexxPackage)
Constructor for a compiled (tokenized) Rexx script.
|