Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
package com.futurescale.sa.controller.command.startup
{
import org.puremvc.as3.patterns.command.MacroCommand;
/**
* Execute separate commands for each phase of startup
*/
public class StartupCommand extends MacroCommand
{
override protected function initializeMacroCommand():void
{
addSubCommand( PrepareControllerCommand );
addSubCommand( PrepareModelCommand );
addSubCommand( PrepareViewCommand );
}
}
}