Class BeanContextMembershipEvent
java.lang.Object
java.util.EventObject
java.beans.beancontext.BeanContextEvent
java.beans.beancontext.BeanContextMembershipEvent
- All Implemented Interfaces:
Serializable
@Deprecated(since="23",
forRemoval=true)
public class BeanContextMembershipEvent
extends BeanContextEvent
Deprecated, for removal: This API element is subject to removal in a future version.
A
BeanContextMembershipEvent encapsulates
the list of children added to, or removed from,
the membership of a particular BeanContext.
An instance of this event is fired whenever a successful
add(), remove(), retainAll(), removeAll(), or clear() is
invoked on a given BeanContext instance.
Objects interested in receiving events of this type must
implement the BeanContextMembershipListener
interface, and must register their intent via the
BeanContext's
addBeanContextMembershipListener(BeanContextMembershipListener bcml)
method.- Since:
- 1.2
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected CollectionDeprecated, for removal: This API element is subject to removal in a future version.The list of children affected by this event notification.Fields declared in class BeanContextEvent
propagatedFromModifier and TypeFieldDescriptionprotected BeanContextDeprecated, for removal: This API element is subject to removal in a future version.TheBeanContextfrom which this event was propagatedFields declared in class EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionBeanContextMembershipEvent(BeanContext bc, Object[] changes) Deprecated, for removal: This API element is subject to removal in a future version.Construct a BeanContextMembershipEventBeanContextMembershipEvent(BeanContext bc, Collection changes) Deprecated, for removal: This API element is subject to removal in a future version.Construct a BeanContextMembershipEvent -
Method Summary
Modifier and TypeMethodDescriptionbooleanDeprecated, for removal: This API element is subject to removal in a future version.Is the child specified affected by the event?iterator()Deprecated, for removal: This API element is subject to removal in a future version.Gets the array of children affected by this event.intsize()Deprecated, for removal: This API element is subject to removal in a future version.Gets the number of children affected by the notification.Object[]toArray()Deprecated, for removal: This API element is subject to removal in a future version.Gets the array of children affected by this event.Methods declared in class BeanContextEvent
getBeanContext, getPropagatedFrom, isPropagated, setPropagatedFromModifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Gets theBeanContextassociated with this event.Deprecated, for removal: This API element is subject to removal in a future version.Gets theBeanContextfrom which this event was propagated.booleanDeprecated, for removal: This API element is subject to removal in a future version.Reports whether or not this event is propagated from some otherBeanContext.voidDeprecated, for removal: This API element is subject to removal in a future version.Sets theBeanContextfrom which this event was propagated.Methods declared in class EventObject
getSource, toStringMethods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
children
Deprecated, for removal: This API element is subject to removal in a future version.The list of children affected by this event notification.
-
-
Constructor Details
-
BeanContextMembershipEvent
Deprecated, for removal: This API element is subject to removal in a future version.Construct a BeanContextMembershipEvent- Parameters:
bc- The BeanContext sourcechanges- The Children affected- Throws:
NullPointerException- ifchangesisnull
-
BeanContextMembershipEvent
Deprecated, for removal: This API element is subject to removal in a future version.Construct a BeanContextMembershipEvent- Parameters:
bc- The BeanContext sourcechanges- The Children effected- Throws:
NullPointerException- if changes associated with this event are null.
-
-
Method Details
-
size
public int size()Deprecated, for removal: This API element is subject to removal in a future version.Gets the number of children affected by the notification.- Returns:
- the number of children affected by the notification
-
contains
Deprecated, for removal: This API element is subject to removal in a future version.Is the child specified affected by the event?- Parameters:
child- the object to check for being affected- Returns:
trueif affected,falseif not
-
toArray
Deprecated, for removal: This API element is subject to removal in a future version.Gets the array of children affected by this event.- Returns:
- the array of children affected
-
iterator
Deprecated, for removal: This API element is subject to removal in a future version.Gets the array of children affected by this event.- Returns:
- the array of children effected
-