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.


Constructor Index

 o MethodCallEvent(Object, String, Object[])
Constructs a MethodCallEvent instance.

Method Index

 o getArguments()
Gets the method arguments.
 o getMethodId()
Gets the method identifier.
 o getPropagationId()
Reserved.
 o setPropagationId(Object)
Reserved.

Constructors

 o 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.

Methods

 o getMethodId
 public String getMethodId()
Gets the method identifier.

Returns:
The unique identifier for the called method.
 o getArguments
 public Object[] getArguments()
Gets the method arguments.

Returns:
The arguments passed to the called method.
 o setPropagationId
 public void setPropagationId(Object propagationId)
Reserved.

 o getPropagationId
 public Object getPropagationId()
Reserved.


All Packages  Class Hierarchy  This Package  Previous  Next  Index