All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.util.es.ExtraMethodRecord

java.lang.Object
   |
   +----com.ibm.beans.util.es.ExtraMethodRecord

public class ExtraMethodRecord
extends Object
implements Serializable
An ExtraMethodRecord object is used by an ExtraStuffAggregator object to store the owning object, original name, Method descriptor object, and extra name for an extra method used by a presenter bean.

See Also:
ExtraStuffAggregator

Constructor Index

 o ExtraMethodRecord()
Creates an ExtraMethodRecord instance.
 o ExtraMethodRecord(Object, Method, String)
Creates an ExtraMethodRecord instance.

Method Index

 o getDescriptor()
Gets the Method descriptor object for this extra method.
 o getExtraName()
Gets the new name used to present this extra method.
 o getOriginalName()
Gets the original name for this extra method, as declared in the class of the owner object.
 o getOwner()
Gets the owner object for this extra method.

Constructors

 o ExtraMethodRecord
 public ExtraMethodRecord()
Creates an ExtraMethodRecord instance. This constructor should only be called when restoring this object from an object input stream.

 o ExtraMethodRecord
 protected ExtraMethodRecord(Object methodOwner,
                             Method extraMethod,
                             String extraMethodName)
Creates an ExtraMethodRecord instance. This constructor should only be called by an ExtraStuffAggregator object.

Parameters:
methodOwner -
The object that owns the original method.
extraMethod -
The Method object for the original method, obtained by using introspection tools on the method owner.
extraMethodName -
The name used to present this extra method.

Methods

 o getOwner
 public Object getOwner()
Gets the owner object for this extra method.

 o getOriginalName
 public String getOriginalName()
Gets the original name for this extra method, as declared in the class of the owner object.

 o getDescriptor
 public Method getDescriptor()
Gets the Method descriptor object for this extra method.

 o getExtraName
 public String getExtraName()
Gets the new name used to present this extra method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index