Package cmion.storage
Class EventPropertyChanged
java.lang.Object
ion.Meta.Event
cmion.architecture.CmionEvent
cmion.storage.EventPropertyChanged
- All Implemented Interfaces:
ion.Meta.IEvent
This event is raised whenever a property value has been set through a
RequestSetProperty. Also raised when the property did not exist before and was
created.
-
Constructor Summary
ConstructorsConstructorDescriptionEventPropertyChanged(String propertyName, Object propertyValue, boolean persistent, CmionStorageContainer parentContainer) create a new event that a property of given name was set to given value -
Method Summary
Modifier and TypeMethodDescriptionreturn the container which the changed property belongs toreturn the name of the property that was changedreturn the value the property was set tobooleanreturn whether the property is persistenttoString()displays information about this eventMethods inherited from class cmion.architecture.CmionEvent
getOriginator, setOriginatorMethods inherited from class ion.Meta.Event
getRaiseTime
-
Constructor Details
-
EventPropertyChanged
public EventPropertyChanged(String propertyName, Object propertyValue, boolean persistent, CmionStorageContainer parentContainer) create a new event that a property of given name was set to given value- Parameters:
persistent-
-
-
Method Details
-
getPropertyName
return the name of the property that was changed -
isPersistent
public boolean isPersistent()return whether the property is persistent -
getPropertyValue
return the value the property was set to -
getParentContainer
return the container which the changed property belongs to -
toString
displays information about this event
-