📄 iproxy.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 Proxy.
*
* <P>
* In PureMVC, <code>IProxy</code> implementors assume these responsibilities:</P>
* <UL>
* <LI>Implement a common method which returns the name of the Proxy.</LI>
* <LI>Provide methods for setting and getting the data object.</LI>
* </UL>
* <P>
* Additionally, <code>IProxy</code>s typically:</P>
* <UL>
* <LI>Maintain references to one or more pieces of model data.</LI>
* <LI>Provide methods for manipulating that data.</LI>
* <LI>Generate <code>INotifications</code> when their model data changes.</LI>
* <LI>Expose their name as a <code>public static const</code> called <code>NAME</code>, if they are not instantiated multiple times.</LI>
* <LI>Encapsulate interaction with local or remote services used to fetch and persist model data.</LI>
* </UL>
*/
public interface IProxy
{
/**
* Get the Proxy name
*
* @return the Proxy instance name
*/
function getProxyName():String;
/**
* Set the data object
*
* @param data the data object
*/
function setData( data:Object ):void;
/**
* Get the data object
*
* @return the data as type Object
*/
function getData():Object;
/**
* Called by the Model when the Proxy is registered
*/
function onRegister( ):void;
/**
* Called by the Model when the Proxy is removed
*/
function onRemove( ):void;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -