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

  1. package org.puremvc.as3.interfaces
  2. {
  3.    public interface IView
  4.    {
  5.        
  6.       
  7.       function notifyObservers(param1:INotification) : void;
  8.       
  9.       function registerMediator(param1:IMediator) : void;
  10.       
  11.       function removeMediator(param1:String) : IMediator;
  12.       
  13.       function registerObserver(param1:String, param2:IObserver) : void;
  14.       
  15.       function hasMediator(param1:String) : Boolean;
  16.       
  17.       function retrieveMediator(param1:String) : IMediator;
  18.    }
  19. }
  20.