📄 imodel.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 Model.
*
* <P>
* In PureMVC, <code>IModel</code> implementors provide
* access to <code>IProxy</code> objects by named lookup. </P>
*
* <P>
* An <code>IModel</code> assumes these responsibilities:</P>
*
* <UL>
* <LI>Maintain a cache of <code>IProxy</code> instances</LI>
* <LI>Provide methods for registering, retrieving, and removing <code>IProxy</code> instances</LI>
* </UL>
*/
public interface IModel
{
/**
* Register an <code>IProxy</code> instance with the <code>Model</code>.
*
* @param proxyName the name to associate with this <code>IProxy</code> instance.
* @param proxy an object reference to be held by the <code>Model</code>.
*/
function registerProxy( proxy:IProxy ) : void;
/**
* Retrieve an <code>IProxy</code> instance from the Model.
*
* @param proxyName
* @return the <code>IProxy</code> instance previously registered with the given <code>proxyName</code>.
*/
function retrieveProxy( proxyName:String ) : IProxy;
/**
* Remove an <code>IProxy</code> instance from the Model.
*
* @param proxyName name of the <code>IProxy</code> instance to be removed.
* @return the <code>IProxy</code> that was removed from the <code>Model</code>
*/
function removeProxy( proxyName:String ) : IProxy;
/**
* Check if a Proxy is registered
*
* @param proxyName
* @return whether a Proxy is currently registered with the given <code>proxyName</code>.
*/
function hasProxy( proxyName:String ) : Boolean;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -