Uses of Class
org.apache.commons.configuration2.event.ConfigurationEvent
Package
Description
The Configuration main package.
This package contains interfaces and classes for receiving notifications about changes at configurations.
-
Uses of ConfigurationEvent in org.apache.commons.configuration2
Modifier and TypeFieldDescriptionstatic final EventType<ConfigurationEvent>
CombinedConfiguration.COMBINED_INVALIDATE
Constant for the event type fired when the internal node structure of a combined configuration becomes invalid.Modifier and TypeMethodDescriptionvoid
CombinedConfiguration.onEvent
(ConfigurationEvent event) Event listener call back for configuration update events.void
PropertiesConfigurationLayout.onEvent
(ConfigurationEvent event) The event listener callback.protected void
BaseHierarchicalConfiguration.subnodeConfigurationChanged
(ConfigurationEvent event) This method is always called when a subnode configuration created from this configuration has been modified. -
Uses of ConfigurationEvent in org.apache.commons.configuration2.event
Modifier and TypeFieldDescriptionstatic final EventType<ConfigurationEvent>
ConfigurationEvent.ADD_NODES
Constant for the event type for an add nodes operation.static final EventType<ConfigurationEvent>
ConfigurationEvent.ADD_PROPERTY
Constant for the event type for an add property operation.static final EventType<ConfigurationEvent>
ConfigurationEvent.ANY
Constant for the common super type of all configuration update events.static final EventType<ConfigurationEvent>
ConfigurationEvent.ANY_HIERARCHICAL
Constant for the common base event type for all hierarchical update events.static final EventType<ConfigurationEvent>
ConfigurationEvent.CLEAR
Constant for the event type for a clear operation.static final EventType<ConfigurationEvent>
ConfigurationEvent.CLEAR_PROPERTY
Constant for the event type for a clear property operation.static final EventType<ConfigurationEvent>
ConfigurationEvent.CLEAR_TREE
Constant for the event type for a clear tree operation.static final EventType<ConfigurationEvent>
ConfigurationEvent.SET_PROPERTY
Constant for the event type for a set property operation.static final EventType<ConfigurationEvent>
ConfigurationEvent.SUBNODE_CHANGED
Constant for the event type indicating a change on a sub configuration.Modifier and TypeMethodDescriptionprotected <T extends ConfigurationEvent>
ConfigurationEventBaseEventSource.createEvent
(EventType<T> type, String propName, Object propValue, boolean before) Creates aConfigurationEvent
object based on the passed in parameters.protected <T extends ConfigurationEvent>
voidCreates an event object and delivers it to all registered event listeners.Modifier and TypeMethodDescriptionprotected <T extends ConfigurationEvent>
ConfigurationEventBaseEventSource.createEvent
(EventType<T> type, String propName, Object propValue, boolean before) Creates aConfigurationEvent
object based on the passed in parameters.ModifierConstructorDescriptionConfigurationEvent
(Object source, EventType<? extends ConfigurationEvent> type, String propertyName, Object propertyValue, boolean beforeUpdate) Creates a new instance ofConfigurationEvent
and initializes it.