|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.rad.remote.event.CallEvent
public class CallEvent
The CallEvent
class contains information about object and action calls.
The difference between object and action calls is that the object name is null
for action calls. And the action name is the method name.
Constructor Summary | |
---|---|
CallEvent(String pObjectName,
String pMethodName,
Object[] pParams,
boolean pIsCallBack)
Creates a new instance of CallEvent . |
Method Summary | |
---|---|
String |
getMethodName()
Gets the method or action name. |
String |
getObjectName()
Gets the object name. |
Object[] |
getParameter()
Gets the parameter list. |
boolean |
isCallBack()
Gets whether the call is a callback call. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CallEvent(String pObjectName, String pMethodName, Object[] pParams, boolean pIsCallBack)
CallEvent
.
pObjectName
- the name of the object or null
for an action callpMethodName
- the method or action namepParams
- the parameterpIsCallBack
- true
if the call is a callback call, false
otherwiseMethod Detail |
---|
public String getObjectName()
null
for an action callpublic String getMethodName()
public Object[] getParameter()
public boolean isCallBack()
true
if the call is a callback call, false
otherwise
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |