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

  1. package org.puremvc.as3.interfaces
  2. {
  3.    public interface IModel
  4.    {
  5.        
  6.       
  7.       function removeProxy(param1:String) : IProxy;
  8.       
  9.       function retrieveProxy(param1:String) : IProxy;
  10.       
  11.       function registerProxy(param1:IProxy) : void;
  12.       
  13.       function hasProxy(param1:String) : Boolean;
  14.    }
  15. }
  16.