home *** CD-ROM | disk | FTP | other *** search
- package com.althea.client.shufflr.controller
- {
- import com.althea.client.shufflr.model.AnalyticProxy;
- import com.althea.client.shufflr.model.DeleteCommandProxy;
- import com.althea.client.shufflr.model.FacebookProxy;
- import com.althea.client.shufflr.model.HelloWorldProxy;
- import com.althea.client.shufflr.model.MenuItemProxy;
- import com.althea.client.shufflr.model.MiscCommandProxy;
- import com.althea.client.shufflr.model.NavMapProxy;
- import com.althea.client.shufflr.model.PlayerConfProxy;
- import com.althea.client.shufflr.model.PostCommandProxy;
- import com.althea.client.shufflr.model.ShuffleFeedProxy;
- import com.althea.client.shufflr.model.SourceSiteProxy;
- import com.althea.client.shufflr.model.UserProxy;
- import org.puremvc.as3.multicore.interfaces.INotification;
- import org.puremvc.as3.multicore.patterns.command.SimpleCommand;
-
- public class ModelPrepCommand extends SimpleCommand
- {
- public function ModelPrepCommand()
- {
- super();
- }
-
- override public function execute(param1:INotification) : void
- {
- facade.registerProxy(new MenuItemProxy());
- facade.registerProxy(new ShuffleFeedProxy());
- facade.registerProxy(new NavMapProxy());
- facade.registerProxy(new UserProxy());
- facade.registerProxy(new PostCommandProxy());
- facade.registerProxy(new DeleteCommandProxy());
- facade.registerProxy(new HelloWorldProxy());
- facade.registerProxy(new FacebookProxy());
- facade.registerProxy(new PlayerConfProxy());
- facade.registerProxy(new MiscCommandProxy());
- facade.registerProxy(new AnalyticProxy());
- facade.registerProxy(new SourceSiteProxy());
- }
- }
- }
-
-