public interface

BeanContext

implements DesignMode Visibility BeanContextChild Collection<E>
java.beans.beancontext.BeanContext
Known Indirect Subclasses

Class Overview

The BeanContext acts a logical hierarchical container for JavaBeans.

Summary

[Expand]
Inherited Constants
From interface java.beans.DesignMode
Fields
public static final Object globalHierarchyLock This global lock is used by both BeanContext and BeanContextServices implementors to serialize changes in a BeanContext hierarchy and any service requests etc.
Public Methods
abstract void addBeanContextMembershipListener(BeanContextMembershipListener bcml)
Adds the specified BeanContextMembershipListener to receive BeanContextMembershipEvents from this BeanContext whenever it adds or removes a child Component(s).
abstract URL getResource(String name, BeanContextChild bcc)
Analagous to java.lang.ClassLoader.getResource(), this method allows a BeanContext implementation to interpose behavior between the child Component and underlying ClassLoader.
abstract InputStream getResourceAsStream(String name, BeanContextChild bcc)
Analagous to java.lang.ClassLoader.getResourceAsStream(), this method allows a BeanContext implementation to interpose behavior between the child Component and underlying ClassLoader.
abstract Object instantiateChild(String beanName)
Instantiate the javaBean named as a child of this BeanContext.
abstract void removeBeanContextMembershipListener(BeanContextMembershipListener bcml)
Removes the specified BeanContextMembershipListener so that it no longer receives BeanContextMembershipEvents when the child Component(s) are added or removed.
[Expand]
Inherited Methods
From interface java.beans.DesignMode
From interface java.beans.Visibility
From interface java.beans.beancontext.BeanContextChild
From interface java.lang.Iterable
From interface java.util.Collection

Fields

public static final Object globalHierarchyLock

This global lock is used by both BeanContext and BeanContextServices implementors to serialize changes in a BeanContext hierarchy and any service requests etc.

Public Methods

public abstract void addBeanContextMembershipListener (BeanContextMembershipListener bcml)

Adds the specified BeanContextMembershipListener to receive BeanContextMembershipEvents from this BeanContext whenever it adds or removes a child Component(s).

Parameters
bcml the BeanContextMembershipListener to be added

public abstract URL getResource (String name, BeanContextChild bcc)

Analagous to java.lang.ClassLoader.getResource(), this method allows a BeanContext implementation to interpose behavior between the child Component and underlying ClassLoader.

Parameters
name the resource name
bcc the specified child
Returns
  • a URL for the named resource for the specified child
Throws
if the resource is not valid
IllegalArgumentException

public abstract InputStream getResourceAsStream (String name, BeanContextChild bcc)

Analagous to java.lang.ClassLoader.getResourceAsStream(), this method allows a BeanContext implementation to interpose behavior between the child Component and underlying ClassLoader.

Parameters
name the resource name
bcc the specified child
Returns
  • an InputStream for reading the resource, or null if the resource could not be found.
Throws
if the resource is not valid
IllegalArgumentException

public abstract Object instantiateChild (String beanName)

Instantiate the javaBean named as a child of this BeanContext. The implementation of the JavaBean is derived from the value of the beanName parameter, and is defined by the java.beans.Beans.instantiate() method.

Parameters
beanName The name of the JavaBean to instantiate as a child of this BeanContext
Throws
IOException
if the class identified by the beanName parameter is not found
ClassNotFoundException
IOException

public abstract void removeBeanContextMembershipListener (BeanContextMembershipListener bcml)

Removes the specified BeanContextMembershipListener so that it no longer receives BeanContextMembershipEvents when the child Component(s) are added or removed.

Parameters
bcml the BeanContextMembershipListener to be removed