All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.util.es.ExtraPropertyRecord

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

public class ExtraPropertyRecord
extends Object
implements Serializable
An ExtraPropertyRecord object is used by an ExtraStuffAggregator object to store the owning object, original name, PropertyDescriptor object, and extra name for an extra property used by a presenter bean.

See Also:
ExtraStuffAggregator

Constructor Index

 o ExtraPropertyRecord()
Creates an ExtraPropertyRecord instance.
 o ExtraPropertyRecord(Object, PropertyDescriptor, String)
Creates an ExtraPropertyRecord instance.

Method Index

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

Constructors

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

 o ExtraPropertyRecord
 protected ExtraPropertyRecord(Object propertyOwner,
                               PropertyDescriptor extraProperty,
                               String extraPropertyName)
Creates an ExtraPropertyRecord instance. This constructor should only be called by an ExtraStuffAggregator object.

Parameters:
propertyOwner -
The object that owns the original property.
extraProperty -
The PropertyDescriptor object for the original property, obtained by using introspection tools on the property owner.
extraPropertyName -
The name used to present this extra property.

Methods

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

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

 o getDescriptor
 public PropertyDescriptor getDescriptor()
Gets the PropertyDescriptor object for this extra property.

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index