Class BeanContextChildSupport
- All Implemented Interfaces:
-
BeanContextChild,BeanContextServiceRevokedListener,BeanContextServicesListener,Serializable,EventListener
- Direct Known Subclasses:
BeanContextSupport
public class BeanContextChildSupport extends Object implements BeanContextChild, BeanContextServicesListener, Serializable
This is a general support class to provide support for implementing the BeanContextChild protocol. This class may either be directly subclassed, or encapsulated and delegated to in order to implement this interface for a given component.
- Since:
- 1.2
- See Also:
Field Summary
| Modifier and Type | Field | Description |
|---|---|---|
protected BeanContext |
beanContext |
The bean context. |
BeanContextChild |
beanContextChildPeer |
The BeanContext in which this BeanContextChild is nested. |
protected PropertyChangeSupport |
pcSupport |
The PropertyChangeSupport associated with this BeanContextChildSupport. |
protected boolean |
rejectedSetBCOnce |
A flag indicating that there has been at least one PropertyChangeVetoException thrown for the attempted setBeanContext operation. |
protected VetoableChangeSupport |
vcSupport |
The VetoableChangeSupport associated with this BeanContextChildSupport. |
Constructor Summary
| Constructor | Description |
|---|---|
BeanContextChildSupport() |
construct a BeanContextChildSupport where this class has been subclassed in order to implement the JavaBean component itself. |
BeanContextChildSupport |
construct a BeanContextChildSupport where the JavaBean component itself implements BeanContextChild, and encapsulates this, delegating that interface to this implementation |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
void |
addPropertyChangeListener |
Add a PropertyChangeListener for a specific property. |
void |
addVetoableChangeListener |
Add a VetoableChangeListener for a specific property. |
void |
firePropertyChange |
Report a bound property update to any registered listeners. |
void |
fireVetoableChange |
Report a vetoable property update to any registered listeners. |
BeanContext |
getBeanContext() |
Gets the nesting BeanContext for this BeanContextChildSupport. |
BeanContextChild |
getBeanContextChildPeer() |
Gets the BeanContextChild associated with this BeanContextChildSupport. |
protected void |
initializeBeanContextResources() |
This method may be overridden by subclasses to provide their own initialization behaviors. |
boolean |
isDelegated() |
Reports whether or not this class is a delegate of another. |
protected void |
releaseBeanContextResources() |
This method may be overridden by subclasses to provide their own release behaviors. |
void |
removePropertyChangeListener |
Remove a PropertyChangeListener for a specific property. |
void |
removeVetoableChangeListener |
Removes a VetoableChangeListener. |
void |
serviceAvailable |
A new service is available from the nesting BeanContext. |
void |
serviceRevoked |
A service provided by the nesting BeanContext has been revoked. |
void |
setBeanContext |
Sets the BeanContext for this BeanContextChildSupport. |
boolean |
validatePendingSetBeanContext |
Called from setBeanContext to validate (or otherwise) the pending change in the nesting BeanContext property value. |
Field Details
beanContextChildPeer
public BeanContextChild beanContextChildPeer
BeanContext in which this BeanContextChild is nested.pcSupport
protected PropertyChangeSupport pcSupport
PropertyChangeSupport associated with this BeanContextChildSupport.vcSupport
protected VetoableChangeSupport vcSupport
VetoableChangeSupport associated with this BeanContextChildSupport.beanContext
protected transient BeanContext beanContext
rejectedSetBCOnce
protected transient boolean rejectedSetBCOnce
PropertyChangeVetoException thrown for the attempted setBeanContext operation.Constructor Details
BeanContextChildSupport
public BeanContextChildSupport()
BeanContextChildSupport
public BeanContextChildSupport(BeanContextChild bcc)
- Parameters:
-
bcc- the underlying bean context child
Method Details
setBeanContext
public void setBeanContext(BeanContext bc) throws PropertyVetoException
BeanContext for this BeanContextChildSupport.- Specified by:
-
setBeanContextin interfaceBeanContextChild - Parameters:
-
bc- the new value to be assigned to theBeanContextproperty - Throws:
-
PropertyVetoException- if the change is rejected
getBeanContext
public BeanContext getBeanContext()
BeanContext for this BeanContextChildSupport.- Specified by:
-
getBeanContextin interfaceBeanContextChild - Returns:
- the nesting
BeanContextfor thisBeanContextChildSupport.
addPropertyChangeListener
public void addPropertyChangeListener(String name, PropertyChangeListener pcl)
name or pcl is null, no exception is thrown and no action is taken.- Specified by:
-
addPropertyChangeListenerin interfaceBeanContextChild - Parameters:
-
name- The name of the property to listen on -
pcl- ThePropertyChangeListenerto be added
removePropertyChangeListener
public void removePropertyChangeListener(String name, PropertyChangeListener pcl)
pcl was added more than once to the same event source for the specified property, it will be notified one less time after being removed. If name is null, no exception is thrown and no action is taken. If pcl is null, or was never added for the specified property, no exception is thrown and no action is taken.- Specified by:
-
removePropertyChangeListenerin interfaceBeanContextChild - Parameters:
-
name- The name of the property that was listened on -
pcl- The PropertyChangeListener to be removed
addVetoableChangeListener
public void addVetoableChangeListener(String name, VetoableChangeListener vcl)
name or vcl is null, no exception is thrown and no action is taken.- Specified by:
-
addVetoableChangeListenerin interfaceBeanContextChild - Parameters:
-
name- The name of the property to listen on -
vcl- TheVetoableChangeListenerto be added
removeVetoableChangeListener
public void removeVetoableChangeListener(String name, VetoableChangeListener vcl)
VetoableChangeListener. If pcl was added more than once to the same event source for the specified property, it will be notified one less time after being removed. If name is null, no exception is thrown and no action is taken. If vcl is null, or was never added for the specified property, no exception is thrown and no action is taken.- Specified by:
-
removeVetoableChangeListenerin interfaceBeanContextChild - Parameters:
-
name- The name of the property that was listened on -
vcl- TheVetoableChangeListenerto be removed
serviceRevoked
public void serviceRevoked(BeanContextServiceRevokedEvent bcsre)
- Specified by:
-
serviceRevokedin interfaceBeanContextServiceRevokedListener - Parameters:
-
bcsre- TheBeanContextServiceRevokedEventfired as a result of a service being revoked
serviceAvailable
public void serviceAvailable(BeanContextServiceAvailableEvent bcsae)
- Specified by:
-
serviceAvailablein interfaceBeanContextServicesListener - Parameters:
-
bcsae- The BeanContextServiceAvailableEvent fired as a result of a service becoming available
getBeanContextChildPeer
public BeanContextChild getBeanContextChildPeer()
BeanContextChild associated with this BeanContextChildSupport.- Returns:
- the
BeanContextChildpeer of this class
isDelegated
public boolean isDelegated()
- Returns:
- true if this class is a delegate of another
firePropertyChange
public void firePropertyChange(String name, Object oldValue, Object newValue)
- Parameters:
-
name- The programmatic name of the property that was changed -
oldValue- The old value of the property -
newValue- The new value of the property
fireVetoableChange
public void fireVetoableChange(String name, Object oldValue, Object newValue) throws PropertyVetoException
No event is fired if old and new are equal and non-null.
- Parameters:
-
name- The programmatic name of the property that is about to change -
oldValue- The old value of the property -
newValue- - The new value of the property - Throws:
-
PropertyVetoException- if the recipient wishes the property change to be rolled back.
validatePendingSetBeanContext
public boolean validatePendingSetBeanContext(BeanContext newValue)
- Parameters:
-
newValue- the new value that has been requested for the BeanContext property - Returns:
-
trueif the change operation is to be vetoed
releaseBeanContextResources
protected void releaseBeanContextResources()
initializeBeanContextResources
protected void initializeBeanContextResources()
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/beans/beancontext/BeanContextChildSupport.html