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
-
ExtraMethodRecord()
- Creates an ExtraMethodRecord instance.
-
ExtraMethodRecord(Object, Method, String)
- Creates an ExtraMethodRecord instance.
-
getDescriptor()
- Gets the Method descriptor object for this extra method.
-
getExtraName()
- Gets the new name used to present this extra method.
-
getOriginalName()
- Gets the original name for this extra method, as declared in the
class of the owner object.
-
getOwner()
- Gets the owner object for this extra method.
ExtraMethodRecord
public ExtraMethodRecord()
- Creates an ExtraMethodRecord instance. This constructor should only
be called when restoring this object from an object input stream.
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.
getOwner
public Object getOwner()
- Gets the owner object for this extra method.
getOriginalName
public String getOriginalName()
- Gets the original name for this extra method, as declared in the
class of the owner object.
getDescriptor
public Method getDescriptor()
- Gets the Method descriptor object for this extra method.
getExtraName
public String getExtraName()
- Gets the new name used to present this extra method.
All Packages Class Hierarchy This Package Previous Next Index