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

  1. package org.puremvc.as3.interfaces
  2. {
  3.    public interface IObserver
  4.    {
  5.        
  6.       
  7.       function compareNotifyContext(param1:Object) : Boolean;
  8.       
  9.       function setNotifyContext(param1:Object) : void;
  10.       
  11.       function setNotifyMethod(param1:Function) : void;
  12.       
  13.       function notifyObserver(param1:INotification) : void;
  14.    }
  15. }
  16.