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
-
getBeanCustomizerInstance()
- Gets the Customizer associated
with the ManagedBean.
-
getBeanInfoInstance()
- Gets the BeanInfo associated with the
ManagedBean.
-
getBeanInstance()
- Gets the Bean associated with the ManagedBean.
-
getDelegator()
- Gets the ManagedBean that is delegating work to this
instance of MBInstanceImpl.
-
getIconInstance(int)
- Gets icon associated with the ManagedBean.
-
setDelegator(ManagedBean)
- Sets the ManagedBean that is delegating work to this
instance of MBInstanceImpl.
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
getBeanInstance
public abstract Object getBeanInstance()
- Gets the Bean associated with the ManagedBean.
- Returns:
- The Bean associated with the ManagedBean.
- See Also:
- Object, MBInstanceImpl
getBeanInfoInstance
public abstract BeanInfo getBeanInfoInstance()
- Gets the BeanInfo associated with the
ManagedBean.
- Returns:
- The BeanInfo associated with the ManagedBean.
- See Also:
- BeanInfo, MBInstanceImpl
getBeanCustomizerInstance
public abstract Customizer getBeanCustomizerInstance()
- Gets the Customizer associated
with the ManagedBean.
- Returns:
- The Customizer associated with the ManagedBean.
- See Also:
- Customizer, MBInstanceImpl
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.
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