- All Superinterfaces:
BeanContextChild
,Collection
,DesignMode
,Iterable
,Visibility
- All Known Subinterfaces:
BeanContextServices
- All Known Implementing Classes:
BeanContextServicesSupport
,BeanContextSupport
public interface BeanContext extends BeanContextChild, Collection, DesignMode, Visibility
The BeanContext acts a logical hierarchical container for JavaBeans.
- Since:
- 1.2
- See Also:
Beans
,BeanContextChild
,BeanContextMembershipListener
,PropertyChangeEvent
,DesignMode
,Visibility
,Collection
-
Field Summary
Fields Modifier and Type Field Description static Object
globalHierarchyLock
This global lock is used by bothBeanContext
andBeanContextServices
implementors to serialize changes in aBeanContext
hierarchy and any service requests etc. -
Method Summary
Modifier and Type Method Description void
addBeanContextMembershipListener(BeanContextMembershipListener bcml)
Adds the specifiedBeanContextMembershipListener
to receiveBeanContextMembershipEvents
from thisBeanContext
whenever it adds or removes a childComponent
(s).URL
getResource(String name, BeanContextChild bcc)
Analagous tojava.lang.ClassLoader.getResource()
, this method allows aBeanContext
implementation to interpose behavior between the childComponent
and underlyingClassLoader
.InputStream
getResourceAsStream(String name, BeanContextChild bcc)
Analagous tojava.lang.ClassLoader.getResourceAsStream()
, this method allows aBeanContext
implementation to interpose behavior between the childComponent
and underlyingClassLoader
.Object
instantiateChild(String beanName)
Instantiate the javaBean named as a child of thisBeanContext
.void
removeBeanContextMembershipListener(BeanContextMembershipListener bcml)
Removes the specifiedBeanContextMembershipListener
so that it no longer receivesBeanContextMembershipEvent
s when the childComponent
(s) are added or removed.Methods declared in interface java.beans.beancontext.BeanContextChild
addPropertyChangeListener, addVetoableChangeListener, getBeanContext, removePropertyChangeListener, removeVetoableChangeListener, setBeanContext
-
Field Details
-
globalHierarchyLock
This global lock is used by bothBeanContext
andBeanContextServices
implementors to serialize changes in aBeanContext
hierarchy and any service requests etc.
-
-
Method Details
-
instantiateChild
Instantiate the javaBean named as a child of thisBeanContext
. The implementation of the JavaBean is derived from the value of the beanName parameter, and is defined by thejava.beans.Beans.instantiate()
method.- Parameters:
beanName
- The name of the JavaBean to instantiate as a child of thisBeanContext
- Returns:
- a javaBean named as a child of this
BeanContext
- Throws:
IOException
- if an IO problem occursClassNotFoundException
- if the class identified by the beanName parameter is not found
-
getResourceAsStream
Analagous tojava.lang.ClassLoader.getResourceAsStream()
, this method allows aBeanContext
implementation to interpose behavior between the childComponent
and underlyingClassLoader
.- Parameters:
name
- the resource namebcc
- the specified child- Returns:
- an
InputStream
for reading the resource, ornull
if the resource could not be found. - Throws:
IllegalArgumentException
- if the resource is not valid
-
getResource
Analagous tojava.lang.ClassLoader.getResource()
, this method allows aBeanContext
implementation to interpose behavior between the childComponent
and underlyingClassLoader
.- Parameters:
name
- the resource namebcc
- the specified child- Returns:
- a
URL
for the named resource for the specified child - Throws:
IllegalArgumentException
- if the resource is not valid
-
addBeanContextMembershipListener
Adds the specifiedBeanContextMembershipListener
to receiveBeanContextMembershipEvents
from thisBeanContext
whenever it adds or removes a childComponent
(s).- Parameters:
bcml
- the BeanContextMembershipListener to be added
-
removeBeanContextMembershipListener
Removes the specifiedBeanContextMembershipListener
so that it no longer receivesBeanContextMembershipEvent
s when the childComponent
(s) are added or removed.- Parameters:
bcml
- theBeanContextMembershipListener
to be removed
-