Sets the model data for a particular model key.
mojo.Model.set = function( key, valueObj )
Appends a data item to a model that is an array list.
mojo.Model.add = function( key, valueObj )
Retrieves the data for a specified model based on the model key.
mojo.Model.get = function( key )
Retrieves the mojo.ModelReference object associated with a model.
mojo.Model.getReference = function( key )
Clears the model data for a particular model key.
mojo.Model.remove = function( key )
Returns whether or not a specified model exists.
mojo.Model.contains = function( key )
Notifies any registered observers of the specified model of a model change.
mojo.Model.notify = function( key )
Registers an observer to a specified model.
mojo.Model.addObserver = function( key, targetObj, targetFunc )
Unregisters an observer from a model.
mojo.Model.removeObserver = function( handle )