Package | Description |
---|---|
org.rexxla.bsf.engines.rexx |
Modifier and Type | Method and Description |
---|---|
RexxAndJava |
RexxEngine.getRexxInterface()
Returns the
RexxAndJava instance that is used for interfacing with Rexx. |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
RexxProxy.sendMessage(RexxAndJava raj,
java.lang.String messageName,
java.lang.Object[] args)
Sends the given message with the given arguments using a callback to ooRexx using the RexxEngine instance.
|
java.lang.Object |
RexxProxy.sendMessage0(RexxAndJava raj,
java.lang.String messageName)
Sends the given message using a callback to ooRexx using the RexxEngine instance.
|
java.lang.Object |
RexxProxy.sendMessage1(RexxAndJava raj,
java.lang.String messageName,
java.lang.Object arg1)
Sends the given message with the given argument using a callback to ooRexx using the RexxEngine instance.
|
java.lang.Object |
RexxProxy.sendMessage2(RexxAndJava raj,
java.lang.String messageName,
java.lang.Object arg1,
java.lang.Object arg2)
Sends the given message with the two given arguments using a callback to ooRexx using the RexxEngine instance.
|
java.lang.Object |
RexxProxy.sendMessage3(RexxAndJava raj,
java.lang.String messageName,
java.lang.Object arg1,
java.lang.Object arg2,
java.lang.Object arg3)
Sends the given message with the three given arguments using a callback to ooRexx using the RexxEngine instance.
|
java.lang.Object |
RexxProxy.sendMessage4(RexxAndJava raj,
java.lang.String messageName,
java.lang.Object arg1,
java.lang.Object arg2,
java.lang.Object arg3,
java.lang.Object arg4)
Sends the given message with the four given arguments using a callback to ooRexx using the RexxEngine instance.
|
java.lang.Object |
RexxProxy.sendMessage5(RexxAndJava raj,
java.lang.String messageName,
java.lang.Object arg1,
java.lang.Object arg2,
java.lang.Object arg3,
java.lang.Object arg4,
java.lang.Object arg5)
Sends the given message with the five given arguments using a callback to ooRexx using the RexxEngine instance.
|