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

  1. package org.puremvc.as3.interfaces
  2. {
  3.    public interface IMediator
  4.    {
  5.        
  6.       
  7.       function listNotificationInterests() : Array;
  8.       
  9.       function onRegister() : void;
  10.       
  11.       function handleNotification(param1:INotification) : void;
  12.       
  13.       function getMediatorName() : String;
  14.       
  15.       function setViewComponent(param1:Object) : void;
  16.       
  17.       function getViewComponent() : Object;
  18.       
  19.       function onRemove() : void;
  20.    }
  21. }
  22.