Uses of Class
org.apache.commons.configuration2.event.ConfigurationEvent
Packages that use 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
Classes in org.apache.commons.configuration2 that implement interfaces with type arguments of type ConfigurationEventModifier and TypeClassDescriptionclassA hierarchical composite configuration class.classA helper class used byPropertiesConfigurationto keep the layout of a properties file.Fields in org.apache.commons.configuration2 with type parameters of type ConfigurationEventModifier and TypeFieldDescriptionstatic final EventType<ConfigurationEvent> CombinedConfiguration.COMBINED_INVALIDATEConstant for the event type fired when the internal node structure of a combined configuration becomes invalid.Methods in org.apache.commons.configuration2 with parameters of type ConfigurationEventModifier and TypeMethodDescriptionvoidCombinedConfiguration.onEvent(ConfigurationEvent event) Event listener call back for configuration update events.voidPropertiesConfigurationLayout.onEvent(ConfigurationEvent event) The event listener callback.protected voidBaseHierarchicalConfiguration.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
Fields in org.apache.commons.configuration2.event with type parameters of type ConfigurationEventModifier and TypeFieldDescriptionstatic final EventType<ConfigurationEvent> ConfigurationEvent.ADD_NODESConstant for the event type for an add nodes operation.static final EventType<ConfigurationEvent> ConfigurationEvent.ADD_PROPERTYConstant for the event type for an add property operation.static final EventType<ConfigurationEvent> ConfigurationEvent.ANYConstant for the common super type of all configuration update events.static final EventType<ConfigurationEvent> ConfigurationEvent.ANY_HIERARCHICALConstant for the common base event type for all hierarchical update events.static final EventType<ConfigurationEvent> ConfigurationEvent.CLEARConstant for the event type for a clear operation.static final EventType<ConfigurationEvent> ConfigurationEvent.CLEAR_PROPERTYConstant for the event type for a clear property operation.static final EventType<ConfigurationEvent> ConfigurationEvent.CLEAR_TREEConstant for the event type for a clear tree operation.static final EventType<ConfigurationEvent> ConfigurationEvent.SET_PROPERTYConstant for the event type for a set property operation.static final EventType<ConfigurationEvent> ConfigurationEvent.SUBNODE_CHANGEDConstant for the event type indicating a change on a sub configuration.Methods in org.apache.commons.configuration2.event with type parameters of type ConfigurationEventModifier and TypeMethodDescriptionprotected <T extends ConfigurationEvent>
ConfigurationEventBaseEventSource.createEvent(EventType<T> type, String propName, Object propValue, boolean before) Creates aConfigurationEventobject based on the passed in parameters.protected <T extends ConfigurationEvent>
voidCreates an event object and delivers it to all registered event listeners.Methods in org.apache.commons.configuration2.event that return ConfigurationEventModifier and TypeMethodDescriptionprotected <T extends ConfigurationEvent>
ConfigurationEventBaseEventSource.createEvent(EventType<T> type, String propName, Object propValue, boolean before) Creates aConfigurationEventobject based on the passed in parameters.Constructor parameters in org.apache.commons.configuration2.event with type arguments of type ConfigurationEventModifierConstructorDescriptionConfigurationEvent(Object source, EventType<? extends ConfigurationEvent> type, String propertyName, Object propertyValue, boolean beforeUpdate) Creates a new instance ofConfigurationEventand initializes it.