All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.beans.dip.MethodCallEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.beans.dip.MethodCallEvent
- public class MethodCallEvent
- extends EventObject
A MethodCallEvent object identifies a bound
or constrained method call. A MethodCallEvent object is the
argument to the MethodCallListener and VetoableMethodListener methods.
-
MethodCallEvent(Object, String, Object[])
- Constructs a MethodCallEvent instance.
-
getArguments()
- Gets the method arguments.
-
getMethodId()
- Gets the method identifier.
-
getPropagationId()
- Reserved.
-
setPropagationId(Object)
- Reserved.
MethodCallEvent
public MethodCallEvent(Object source,
String methodId,
Object args[])
- Constructs a MethodCallEvent instance.
- Parameters:
- source - The bean that fired the event.
- methodId - A string uniquely identifying the called method.
- args - The arguments passed to the called method.
getMethodId
public String getMethodId()
- Gets the method identifier.
- Returns:
- The unique identifier for the called method.
getArguments
public Object[] getArguments()
- Gets the method arguments.
- Returns:
- The arguments passed to the called method.
setPropagationId
public void setPropagationId(Object propagationId)
- Reserved.
getPropagationId
public Object getPropagationId()
- Reserved.
All Packages Class Hierarchy This Package Previous Next Index