All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.ibm.beans.util.es.HasExtraStuff

public interface interface HasExtraStuff
The HasExtraStuff interface is used to let other beans get two objects that contain extra members specific to this bean instance. The first object is an ExtraStuffAggregator object that provides dynamic access to the extra members. The second object is a compiled new bean that provides static access to the extra members.

See Also:
ExtraStuffAggregator

Method Index

 o getCompiledExtraStuff()
Gets a compiled bean that contains extra members specific to this bean instance.
 o getExtraStuffAggregator()
Gets an ExtraStuffAggregator object that contains extra members specific to this bean instance.

Methods

 o getCompiledExtraStuff
 public abstract CompiledExtraStuffBean getCompiledExtraStuff()
Gets a compiled bean that contains extra members specific to this bean instance. These compiled beans are produced by an ExtraStuffAggregator object. If no such bean has been compiled, this method is expected to return null.

Returns:
A compiled bean that contains the extra members for this bean instance.
 o getExtraStuffAggregator
 public abstract ExtraStuffAggregator getExtraStuffAggregator()
Gets an ExtraStuffAggregator object that contains extra members specific to this bean instance. If an ExtraStuffAggregator object is not currently allocated, this method is expected to return null.

Returns:
An ExtraStuffAggregator object that contains the extra members for this bean instance.

All Packages  Class Hierarchy  This Package  Previous  Next  Index