📄 icontroller.as
字号:
/*
PureMVC - Copyright(c) 2006-08 Futurescale, Inc., Some rights reserved.
Your reuse is governed by the Creative Commons Attribution 3.0 United States License
*/
package org.puremvc.as3.interfaces
{
/**
* The interface definition for a PureMVC Controller.
*
* <P>
* In PureMVC, an <code>IController</code> implementor
* follows the 'Command and Controller' strategy, and
* assumes these responsibilities:
* <UL>
* <LI> Remembering which <code>ICommand</code>s
* are intended to handle which <code>INotifications</code>.</LI>
* <LI> Registering itself as an <code>IObserver</code> with
* the <code>View</code> for each <code>INotification</code>
* that it has an <code>ICommand</code> mapping for.</LI>
* <LI> Creating a new instance of the proper <code>ICommand</code>
* to handle a given <code>INotification</code> when notified by the <code>View</code>.</LI>
* <LI> Calling the <code>ICommand</code>'s <code>execute</code>
* method, passing in the <code>INotification</code>.</LI>
* </UL>
*
* @see org.puremvc.as3.interfaces INotification
* @see org.puremvc.as3.interfaces ICommand
*/
public interface IController
{
/**
* Register a particular <code>ICommand</code> class as the handler
* for a particular <code>INotification</code>.
*
* @param notificationName the name of the <code>INotification</code>
* @param commandClassRef the Class of the <code>ICommand</code>
*/
function registerCommand( notificationName : String, commandClassRef : Class ) : void;
/**
* Execute the <code>ICommand</code> previously registered as the
* handler for <code>INotification</code>s with the given notification name.
*
* @param notification the <code>INotification</code> to execute the associated <code>ICommand</code> for
*/
function executeCommand( notification : INotification ) : void;
/**
* Remove a previously registered <code>ICommand</code> to <code>INotification</code> mapping.
*
* @param notificationName the name of the <code>INotification</code> to remove the <code>ICommand</code> mapping for
*/
function removeCommand( notificationName : String ):void;
/**
* Check if a Command is registered for a given Notification
*
* @param notificationName
* @return whether a Command is currently registered for the given <code>notificationName</code>.
*/
function hasCommand( notificationName:String ) : Boolean;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -