Defines the interface that classes can use to listen for change events on Properties. More...
#include <src/main/decaf/util/logging/PropertiesChangeListener.h>
Public Member Functions | |
| virtual | ~PropertiesChangeListener () |
| virtual void | onPropertiesReset ()=0 |
| Indicates that the Properties have all been reset and should be considered to be back to their default values. | |
| virtual void | onPropertyChanged (const std::string &name, const std::string &oldValue, const std::string &newValue)=0 |
| Change Event, called when a property is changed, includes the name of the property that was changed along with it old and new values. | |
Defines the interface that classes can use to listen for change events on Properties.
| virtual decaf::util::logging::PropertiesChangeListener::~PropertiesChangeListener | ( | ) | [inline, virtual] |
| virtual void decaf::util::logging::PropertiesChangeListener::onPropertiesReset | ( | ) | [pure virtual] |
Indicates that the Properties have all been reset and should be considered to be back to their default values.
| virtual void decaf::util::logging::PropertiesChangeListener::onPropertyChanged | ( | const std::string & | name, | |
| const std::string & | oldValue, | |||
| const std::string & | newValue | |||
| ) | [pure virtual] |
Change Event, called when a property is changed, includes the name of the property that was changed along with it old and new values.
| name | The name of the Property that changed. | |
| oldValue | The old Value of the Property. | |
| newValue | The new Value of the Property. |
1.6.1