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