home *** CD-ROM | disk | FTP | other *** search
- package com.althea.client.shufflr.controller
- {
- import com.althea.client.shufflr.model.MenuItemProxy;
- import org.puremvc.as3.multicore.interfaces.INotification;
- import org.puremvc.as3.multicore.patterns.command.SimpleCommand;
-
- public class LoadNextDataCommand extends SimpleCommand
- {
- public function LoadNextDataCommand()
- {
- super();
- }
-
- override public function execute(param1:INotification) : void
- {
- var _loc2_:Object = Object(param1.getBody());
- var _loc3_:MenuItemProxy = facade.retrieveProxy(MenuItemProxy.NAME) as MenuItemProxy;
- _loc3_.loadData(_loc2_,param1.getType());
- }
- }
- }
-
-