Package 

Class ModelChangedArgs

    • Method Detail

      • getModel

         final Model getModel()

        The full model in its current state.

      • getPath

         final String getPath()

        The path to the property, from the root Model, that has changed. When the root model has changed, path and property will be identical. When it's a nested property that has changed, path will contain a "dot notation" path to the property:

        • If a map property on the root model gets a new KVP, this will be mapProperty.new_key

        • If a complex property on the root model, this will be complexProperty.simpleProperty

        • If a map property on a complex property on the root model gets a new KVP, this will be complexProperty.mapProperty.new_key

      • getOldValue

         final Object getOldValue()

        The old value of the property, prior to it being changed.

      • getNewValue

         final Object getNewValue()

        The new value of the property, after it has been changed.