public class ConfigurationChangeEvent extends PropertyChangeEvent
An event that gets fired when a value in the user configuration changes. It references the configuration as the source of the event, name of the changed parameter and its old and new value.
These events are used in
ConfigurationChangeListener
interface.
T-Plan Robot Enterprise, (C) 2009-2022 T-Plan Limited. All rights reserved.
Constructor and Description |
---|
ConfigurationChangeEvent(Object source,
String parameterName,
Object oldValue,
Object newValue)
Constructs a new
ConfigurationChangeEvent . |
getNewValue, getOldValue, getPropagationId, getPropertyName, setPropagationId, toString
getSource
public ConfigurationChangeEvent(Object source, String parameterName, Object oldValue, Object newValue)
ConfigurationChangeEvent
.source
- The bean that fired the event.parameterName
- The programatic name of the property
that was changed.oldValue
- The old value of the property.newValue
- The new value of the property.