home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Beez.swf / scripts / org / puremvc / as3 / interfaces / IProxy.as < prev    next >
Encoding:
Text File  |  2008-09-03  |  239 b   |  14 lines

  1. package org.puremvc.as3.interfaces
  2. {
  3.    public interface IProxy
  4.    {
  5.        
  6.       
  7.       function getData() : Object;
  8.       
  9.       function getProxyName() : String;
  10.       
  11.       function setData(param1:Object) : void;
  12.    }
  13. }
  14.