Interface BeanContext
- All Superinterfaces:
BeanContextChild, Collection, DesignMode, Iterable, Visibility
- All Known Subinterfaces:
BeanContextServices
- All Known Implementing Classes:
BeanContextServicesSupport, BeanContextSupport
@Deprecated(since="23",
forRemoval=true)
public interface BeanContext
extends BeanContextChild, Collection, DesignMode, Visibility
Deprecated, for removal: This API element is subject to removal in a future version.
The BeanContext acts a logical hierarchical container for JavaBeans.
- Since:
- 1.2
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ObjectDeprecated, for removal: This API element is subject to removal in a future version.This global lock is used by bothBeanContextandBeanContextServicesimplementors to serialize changes in aBeanContexthierarchy and any service requests etc.Fields declared in interface DesignMode
PROPERTYNAMEModifier and TypeFieldDescriptionstatic final StringThe standard value of the propertyName as fired from a BeanContext or other source of PropertyChangeEvents. -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated, for removal: This API element is subject to removal in a future version.Adds the specifiedBeanContextMembershipListenerto receiveBeanContextMembershipEventsfrom thisBeanContextwhenever it adds or removes a childComponent(s).getResource(String name, BeanContextChild bcc) Deprecated, for removal: This API element is subject to removal in a future version.Analogous tojava.lang.ClassLoader.getResource(), this method allows aBeanContextimplementation to interpose behavior between the childComponentand underlyingClassLoader.getResourceAsStream(String name, BeanContextChild bcc) Deprecated, for removal: This API element is subject to removal in a future version.Analogous tojava.lang.ClassLoader.getResourceAsStream(), this method allows aBeanContextimplementation to interpose behavior between the childComponentand underlyingClassLoader.instantiateChild(String beanName) Deprecated, for removal: This API element is subject to removal in a future version.Instantiate the javaBean named as a child of thisBeanContext.voidDeprecated, for removal: This API element is subject to removal in a future version.Removes the specifiedBeanContextMembershipListenerso that it no longer receivesBeanContextMembershipEvents when the childComponent(s) are added or removed.Methods declared in interface BeanContextChild
addPropertyChangeListener, addVetoableChangeListener, getBeanContext, removePropertyChangeListener, removeVetoableChangeListener, setBeanContextModifier and TypeMethodDescriptionvoidDeprecated, for removal: This API element is subject to removal in a future version.Adds aPropertyChangeListenerto thisBeanContextChildin order to receive aPropertyChangeEventwhenever the specified property has changed.voidDeprecated, for removal: This API element is subject to removal in a future version.Adds aVetoableChangeListenerto thisBeanContextChildto receive events whenever the specified property changes.Deprecated, for removal: This API element is subject to removal in a future version.Gets theBeanContextassociated with thisBeanContextChild.voidDeprecated, for removal: This API element is subject to removal in a future version.Removes aPropertyChangeListenerfrom thisBeanContextChildso that it no longer receivesPropertyChangeEventswhen the specified property is changed.voidDeprecated, for removal: This API element is subject to removal in a future version.Removes aVetoableChangeListenerfrom thisBeanContextChildso that it no longer receives events when the specified property changes.voidDeprecated, for removal: This API element is subject to removal in a future version.Objects that implement this interface, shall fire a java.beans.PropertyChangeEvent, with parameters: propertyName "beanContext", oldValue (the previous nestingBeanContextinstance, ornull), newValue (the current nestingBeanContextinstance, ornull).Methods declared in interface Collection
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray, toArrayModifier and TypeMethodDescriptionbooleanEnsures that this collection contains the specified element (optional operation).booleanaddAll(Collection c) Adds all of the elements in the specified collection to this collection (optional operation).voidclear()Removes all of the elements from this collection (optional operation).booleanReturnstrueif this collection contains the specified element.booleanReturnstrueif this collection contains all of the elements in the specified collection.booleanCompares the specified object with this collection for equality.inthashCode()Returns the hash code value for this collection.booleanisEmpty()Returnstrueif this collection contains no elements.iterator()Returns an iterator over the elements in this collection.default StreamReturns a possibly parallelStreamwith this collection as its source.booleanRemoves a single instance of the specified element from this collection, if it is present (optional operation).booleanRemoves all of this collection's elements that are also contained in the specified collection (optional operation).default booleanRemoves all of the elements of this collection that satisfy the given predicate (optional operation).booleanRetains only the elements in this collection that are contained in the specified collection (optional operation).intsize()Returns the number of elements in this collection.default SpliteratorCreates aSpliteratorover the elements in this collection.default Streamstream()Returns a sequentialStreamwith this collection as its source.Object[]toArray()Returns an array containing all of the elements in this collection.default <T> Object[]toArray(IntFunction generator) Returns an array containing all of the elements in this collection, using the providedgeneratorfunction to allocate the returned array.<T> Object[]Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.Methods declared in interface DesignMode
isDesignTime, setDesignTimeModifier and TypeMethodDescriptionbooleanA value of true denotes that JavaBeans should behave in design time mode, a value of false denotes runtime behavior.voidsetDesignTime(boolean designTime) Sets the "value" of the "designTime" property.Methods declared in interface Visibility
avoidingGui, dontUseGui, needsGui, okToUseGuiModifier and TypeMethodDescriptionbooleanDetermines whether this bean is avoiding using a GUI.voidThis method instructs the bean that it should not use the Gui.booleanneedsGui()Determines whether this bean needs a GUI.voidThis method instructs the bean that it is OK to use the Gui.
-
Field Details
-
globalHierarchyLock
Deprecated, for removal: This API element is subject to removal in a future version.This global lock is used by bothBeanContextandBeanContextServicesimplementors to serialize changes in aBeanContexthierarchy and any service requests etc.
-
-
Method Details
-
instantiateChild
Deprecated, for removal: This API element is subject to removal in a future version.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
Deprecated, for removal: This API element is subject to removal in a future version.Analogous tojava.lang.ClassLoader.getResourceAsStream(), this method allows aBeanContextimplementation to interpose behavior between the childComponentand underlyingClassLoader.- Parameters:
name- the resource namebcc- the specified child- Returns:
- an
InputStreamfor reading the resource, ornullif the resource could not be found. - Throws:
IllegalArgumentException- if the resource is not valid
-
getResource
Deprecated, for removal: This API element is subject to removal in a future version.Analogous tojava.lang.ClassLoader.getResource(), this method allows aBeanContextimplementation to interpose behavior between the childComponentand underlyingClassLoader.- Parameters:
name- the resource namebcc- the specified child- Returns:
- a
URLfor the named resource for the specified child - Throws:
IllegalArgumentException- if the resource is not valid
-
addBeanContextMembershipListener
Deprecated, for removal: This API element is subject to removal in a future version.Adds the specifiedBeanContextMembershipListenerto receiveBeanContextMembershipEventsfrom thisBeanContextwhenever it adds or removes a childComponent(s).- Parameters:
bcml- the BeanContextMembershipListener to be added
-
removeBeanContextMembershipListener
Deprecated, for removal: This API element is subject to removal in a future version.Removes the specifiedBeanContextMembershipListenerso that it no longer receivesBeanContextMembershipEvents when the childComponent(s) are added or removed.- Parameters:
bcml- theBeanContextMembershipListenerto be removed
-