package research.robotlegs.flex.controller { import org.robotlegs.mvcs.Command; import research.robotlegs.flex.view.SplashScreen; import research.robotlegs.flex.view.SplashScreenMediator; public class PrepViewCommand extends Command { override public function execute():void { trace ( this + '.execute' ); this.mediatorMap.mapView( SplashScreen, SplashScreenMediator ); } } }