| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface BeanContextChild
JavaBeans wishing to be nested within, and obtain a reference to their execution environment, or context, as defined by the BeanContext sub-interface shall implement this interface.
Conformant BeanContexts shall as a side effect of adding a BeanContextChild object shall pass a reference to itself via the setBeanContext() method of this interface.
Note that a BeanContextChild may refuse a change in state by throwing PropertyVetoedException in response.
In order for persistence mechanisms to function properly on BeanContextChild instances across a broad variety of scenarios, implementing classes of this interface are required to define as transient, any or all fields, or instance variables, that may contain, or represent, references to the nesting BeanContext instance or other resources obtained from the BeanContext via any unspecified mechanisms.
BeanContext, 
PropertyChangeEvent, 
PropertyChangeListener, 
java.beans.PropertyVetoEvent, 
java.beans.PropertyVetoListener, 
PropertyVetoException| Method Summary | |
|---|---|
|  void | addPropertyChangeListener(String name,
                          PropertyChangeListener pcl)Adds a PropertyChangeListenerto thisBeanContextChildin order to receive aPropertyChangeEventwhenever the specified property has changed. | 
|  void | addVetoableChangeListener(String name,
                          VetoableChangeListener vcl)Adds a VetoableChangeListenerto 
 thisBeanContextChildto receive events whenever the specified property changes. | 
|  BeanContext | getBeanContext()Gets the BeanContextassociated 
 with thisBeanContextChild. | 
|  void | removePropertyChangeListener(String name,
                             PropertyChangeListener pcl)Removes a PropertyChangeListenerfrom thisBeanContextChildso that it no longer 
 receivesPropertyChangeEventswhen the 
 specified property is changed. | 
|  void | removeVetoableChangeListener(String name,
                             VetoableChangeListener vcl)Removes a VetoableChangeListenerfrom thisBeanContextChildso that it no longer receives 
 events when the specified property changes. | 
|  void | setBeanContext(BeanContext bc)Objects that implement this interface, shall fire a java.beans.PropertyChangeEvent, with parameters: propertyName "beanContext", oldValue (the previous nesting BeanContextinstance, ornull), 
 newValue (the current nestingBeanContextinstance, ornull). | 
| Method Detail | 
|---|
void setBeanContext(BeanContext bc)
                    throws PropertyVetoException
 Objects that implement this interface, 
 shall fire a java.beans.PropertyChangeEvent, with parameters:
 propertyName "beanContext", oldValue (the previous nesting 
 BeanContext instance, or null), 
 newValue (the current nesting 
 BeanContext instance, or null).
 
A change in the value of the nesting BeanContext property of this BeanContextChild may be vetoed by throwing the appropriate exception.
bc - The BeanContext with which 
 to associate this BeanContextChild.
PropertyVetoExceptionBeanContext is refused.
PropertyVetoExceptionBeanContext getBeanContext()
BeanContext associated 
 with this BeanContextChild.
BeanContext associated 
 with this BeanContextChild.
void addPropertyChangeListener(String name,
                               PropertyChangeListener pcl)
PropertyChangeListener 
 to this BeanContextChild 
 in order to receive a PropertyChangeEvent 
 whenever the specified property has changed.
name - the name of the property to listen onpcl - the PropertyChangeListener to add
void removePropertyChangeListener(String name,
                                  PropertyChangeListener pcl)
PropertyChangeListener from this 
 BeanContextChild  so that it no longer 
 receives PropertyChangeEvents when the 
 specified property is changed.
name - the name of the property that was listened onpcl - the PropertyChangeListener to remove
void addVetoableChangeListener(String name,
                               VetoableChangeListener vcl)
VetoableChangeListener to 
 this BeanContextChild  
 to receive events whenever the specified property changes.
name - the name of the property to listen onvcl - the VetoableChangeListener to add
void removeVetoableChangeListener(String name,
                                  VetoableChangeListener vcl)
VetoableChangeListener from this 
 BeanContextChild so that it no longer receives 
 events when the specified property changes.
name - the name of the property that was listened on.vcl - the VetoableChangeListener to remove.| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.