【PureMVC ApplicationFacade类模板】千磨万击还坚劲,任尔东西南北风。这篇文章主要讲述PureMVC ApplicationFacade类模板相关的知识,希望能为你提供帮助。
- /**
- * Base PureMVC Project
- */
- package {
- import org.puremvc.as3.interfaces.IFacade;
- import org.puremvc.as3.patterns.facade.Facade;
- import controller.*;
- /**
- * Simple ApplicationFacade for PureMVC Structured Project
- */
- public class ApplicationFacade extends Facade implements IFacade {
- /**
- * Notification name constants
- */
- public static const STARTUP:String = " startup" ;
- /**
- * Singleton ApplicationFacade Factory Method
- */
- public static function getInstance(): ApplicationFacade {
- if (instance == null) {
- instance = new ApplicationFacade( );
- }
- return instance as ApplicationFacade;
- }
- /**
- * Broadcast the STARTUP Notification
- */
- public function startup(app:Object):void {
- sendNotification( STARTUP, app );
- }
- /**
- * Register Commands with the Controller
- */
- override protected function initializeController():void
- {
- super.initializeController();
- registerCommand(STARTUP, StartupCommand);
- }
- }
- }
推荐阅读
- 马文2pom.xml文件对于在Eclipse Europa+m2eclipse中工作的webapp
- 使用Twidroid&?039;的public intent从您自己的Android应用程序发送Twitter消息
- 在KickApps支持的站点上移动模块
- 为您的KickApps社区提供人造社区隐私
- KickApps:将类添加到“组”页上的“离开/加入”按钮。
- Nginx性能优化和安全性配置
- 使用Python,Twisted和Django通过Android手机控制笔记本电脑
- 有抱负的Google Glass开发者教程(构建你的第一个Glass应用)
- Mirror API教程(适用于Web开发人员的Google Glass)