IModel The interface definition for a PureMVC Model.
IModel
Model
In PureMVC, IModel implementors provide access to IProxy objects by named lookup.
IProxy
An IModel assumes these responsibilities:
Maintain a cache of IProxy instances
Provide methods for registering, retrieving, and removing IProxy instances
Check if a Proxy is registered
Proxy
The name of the proxy to check.
True if the IProxy is registered, otherwise false.
Register an IProxy instance with the Model.
an object reference to be held by the Model.
Remove an IProxy instance from the Model.
The name of the proxy to remove.
The removed IProxy if found, otherwise null.
Retrieve an IProxy instance from the Model.
The name of the proxy to retrieve.
The IProxy if registered, otherwise null.
IModel
The interface definition for a PureMVCModel
.In PureMVC,
IModel
implementors provide access toIProxy
objects by named lookup.An
IModel
assumes these responsibilities:Maintain a cache of
IProxy
instancesProvide methods for registering, retrieving, and removing
IProxy
instancesIModel