Uses of Class
org.apache.commons.configuration2.event.EventListenerRegistrationData
Packages that use EventListenerRegistrationData
Package
Description
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
This package contains interfaces and classes for receiving notifications about changes at configurations.
-
Uses of EventListenerRegistrationData in org.apache.commons.configuration2.builder
Methods in org.apache.commons.configuration2.builder with parameters of type EventListenerRegistrationDataModifier and TypeMethodDescription<T extends Event>
EventListenerParametersEventListenerParameters.addEventListener
(EventListenerRegistrationData<T> registrationData) Adds the specifiedEventListenerRegistrationData
instance to this object.private static <E extends Event>
voidBasicConfigurationBuilder.registerListener
(EventSource evSrc, EventListenerRegistrationData<E> regData) Registers an event listener at an event source object.private static <E extends Event>
voidBasicConfigurationBuilder.removeListener
(EventSource evSrc, EventListenerRegistrationData<E> regData) Removes an event listener from an event source object. -
Uses of EventListenerRegistrationData in org.apache.commons.configuration2.event
Fields in org.apache.commons.configuration2.event with type parameters of type EventListenerRegistrationDataModifier and TypeFieldDescriptionprivate final List
<EventListenerRegistrationData<?>> EventListenerList.listeners
A list with the listeners added to this object.private final Iterator
<EventListenerRegistrationData<?>> EventListenerList.EventListenerIterator.underlyingIterator
The underlying iterator.Methods in org.apache.commons.configuration2.event that return types with arguments of type EventListenerRegistrationDataModifier and TypeMethodDescriptionBaseEventSource.getEventListenerRegistrations()
Gets a list with allEventListenerRegistrationData
objects currently contained for this event source.EventListenerList.getRegistrations()
Gets an (unmodifiable) list with registration information about all event listeners registered at this object.<T extends Event>
List<EventListenerRegistrationData<? extends T>> EventListenerList.getRegistrationsForSuperType
(EventType<T> eventType) Gets a list withEventListenerRegistrationData
objects for all event listener registrations of the specified event type or an event type having this type as super type (directly or indirectly).Methods in org.apache.commons.configuration2.event with parameters of type EventListenerRegistrationDataModifier and TypeMethodDescription<T extends Event>
voidEventListenerList.addEventListener
(EventListenerRegistrationData<T> regData) Adds the specified listener registration data object to the internal list of event listeners.private EventListener
<? super T> EventListenerList.EventListenerIterator.castListener
(EventListenerRegistrationData<?> regData) Extracts the listener from the given data object and performs a cast to the target type.<T extends Event>
booleanEventListenerList.removeEventListener
(EventListenerRegistrationData<T> regData) Removes the event listener registration defined by the passed in data object.Constructor parameters in org.apache.commons.configuration2.event with type arguments of type EventListenerRegistrationDataModifierConstructorDescriptionprivate
EventListenerIterator
(Iterator<EventListenerRegistrationData<?>> it, EventType<T> base)