model.rb

Path: src/org/puremvc/ruby/core/model.rb
Last Update: Mon Dec 29 18:58:30 -0600 2008

In PureMVC, the Model class provides access to model objects (Proxies) by named lookup.

The Model assumes these responsibilities:

 * Maintain a cache of Proxy instances.
 * Provide methods for registering, retrieving, and removing Proxy instances.

Your application must register Proxy instances with the Model. Typically, you use an Command to create and register Proxy instances once the Facade has initialized the Core actors.

[Validate]