All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.ibm.beans.mb.MBInstanceInterface

public interface interface MBInstanceInterface
An interface for methods that return instantiations of beans and miscellaneous bean information.

See Also:
MBInstanceImpl

Method Index

 o getBeanCustomizerInstance()
Gets the Customizer associated with the ManagedBean.
 o getBeanInfoInstance()
Gets the BeanInfo associated with the ManagedBean.
 o getBeanInstance()
Gets the Bean associated with the ManagedBean.
 o getDelegator()
Gets the ManagedBean that is delegating work to this instance of MBInstanceImpl.
 o getIconInstance(int)
Gets icon associated with the ManagedBean.
 o setDelegator(ManagedBean)
Sets the ManagedBean that is delegating work to this instance of MBInstanceImpl.

Methods

 o getIconInstance
 public abstract Image getIconInstance(int iconKind)
Gets icon associated with the ManagedBean.

Parameters:
iconKind - The kind of icon requested. This should be one of the constant values:
  • BeanInfo.ICON_COLOR_16x16
  • BeanInfo.ICON_COLOR_32x32
  • BeanInfo.ICON_MONO_16x16
  • BeanInfo.ICON_MONO_32x32
Returns:
The icon associated with the ManagedBean.
See Also:
Image, MBInstanceImpl
 o getBeanInstance
 public abstract Object getBeanInstance()
Gets the Bean associated with the ManagedBean.

Returns:
The Bean associated with the ManagedBean.
See Also:
Object, MBInstanceImpl
 o getBeanInfoInstance
 public abstract BeanInfo getBeanInfoInstance()
Gets the BeanInfo associated with the ManagedBean.

Returns:
The BeanInfo associated with the ManagedBean.
See Also:
BeanInfo, MBInstanceImpl
 o getBeanCustomizerInstance
 public abstract Customizer getBeanCustomizerInstance()
Gets the Customizer associated with the ManagedBean.

Returns:
The Customizer associated with the ManagedBean.
See Also:
Customizer, MBInstanceImpl
 o getDelegator
 public abstract ManagedBean getDelegator()
Gets the ManagedBean that is delegating work to this instance of MBInstanceImpl.

Returns:
The ManagedBean that is delegating work to this instance of MBInstanceImpl.
 o setDelegator
 public abstract void setDelegator(ManagedBean delegator)
Sets the ManagedBean that is delegating work to this instance of MBInstanceImpl.

Parameters:
delegator - The ManagedBean that is delegating work to this instance of MBInstanceImpl.

All Packages  Class Hierarchy  This Package  Previous  Next  Index