Interface ConfigurationListener
-
- All Known Implementing Classes:
AbstractHierarchicalFileConfiguration,CombinedConfiguration,DefaultConfigurationBuilder,DynamicCombinedConfiguration,HierarchicalINIConfiguration,HierarchicalXMLConfiguration,MultiFileHierarchicalConfiguration,PatternSubtreeConfigurationWrapper,PropertiesConfigurationLayout,PropertyListConfiguration,XMLConfiguration,XMLPropertyListConfiguration
public interface ConfigurationListenerA simple event listener interface for configuration observers.
This interface can be implemented by classes that are interested in "raw" events caused by configuration objects. Each manipulation on a configuration object will generate such an event. There is only a single method that is invoked when an event occurs.
- Since:
- 1.3
- Version:
- $Id: ConfigurationListener.java 561230 2007-07-31 04:17:09Z rahul $
- Author:
- Commons Configuration team
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigurationChanged(ConfigurationEvent event)Notifies this listener about a manipulation on a monitored configuration object.
-
-
-
Method Detail
-
configurationChanged
void configurationChanged(ConfigurationEvent event)
Notifies this listener about a manipulation on a monitored configuration object.- Parameters:
event- the event describing the manipulation
-
-