Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
package com.mycompany.myapp.view.mediator
{
import com.mycompany.myapp.view.component.AppSections;
import com.mycompany.myapp.view.event.AppEvent;
import org.puremvc.as3.interfaces.INotification;
import org.puremvc.as3.patterns.mediator.Mediator;
public class AppSectionsMediator extends Mediator
{
public static const NAME:String = 'AppSectionsMediator';
public function AppSectionsMediator( viewComponent:AppSections )
{
super( NAME, viewComponent );
}
protected function get appSections():AppSections
{
return viewComponent as AppSections;
}
override public function onRegister():void
{....