Uses of Class
org.apache.commons.configuration2.event.EventListenerList
-
Packages that use EventListenerList Package Description org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects.org.apache.commons.configuration2.builder.combined A package containing the implementation of the builder for combined configurations.org.apache.commons.configuration2.event This package contains interfaces and classes for receiving notifications about changes at configurations.org.apache.commons.configuration2.reloading This package contains classes and interfaces related to the reloading mechanism. -
-
Uses of EventListenerList in org.apache.commons.configuration2.builder
Fields in org.apache.commons.configuration2.builder declared as EventListenerList Modifier and Type Field Description private EventListenerList
BasicConfigurationBuilder. eventListeners
An object managing the event listeners registered at this builder.private EventListenerList
EventListenerParameters. eventListeners
Stores the event listener registrations added to this object.Methods in org.apache.commons.configuration2.builder that return EventListenerList Modifier and Type Method Description EventListenerList
EventListenerParameters. getListeners()
EventListenerList
EventListenerProvider. getListeners()
Gets anEventListenerList
object with information about event listener registrations.Methods in org.apache.commons.configuration2.builder with parameters of type EventListenerList Modifier and Type Method Description protected void
BasicConfigurationBuilder. copyEventListeners(BasicConfigurationBuilder<?> target, EventListenerList listeners)
Copies all event listeners in the specified list to the specified target configuration builder. -
Uses of EventListenerList in org.apache.commons.configuration2.builder.combined
Fields in org.apache.commons.configuration2.builder.combined declared as EventListenerList Modifier and Type Field Description private EventListenerList
MultiFileConfigurationBuilder. configurationListeners
A list for the event listeners to be passed to managed builders. -
Uses of EventListenerList in org.apache.commons.configuration2.event
Fields in org.apache.commons.configuration2.event declared as EventListenerList Modifier and Type Field Description private EventListenerList
BaseEventSource. eventListeners
The list for managing registered event listeners.Methods in org.apache.commons.configuration2.event with parameters of type EventListenerList Modifier and Type Method Description void
EventListenerList. addAll(EventListenerList c)
Adds all event listener registrations stored in the specifiedEventListenerList
to this list. -
Uses of EventListenerList in org.apache.commons.configuration2.reloading
Fields in org.apache.commons.configuration2.reloading declared as EventListenerList Modifier and Type Field Description private EventListenerList
ReloadingController. listeners
The helper object which manages the registered event listeners.
-