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

  1. package org.puremvc.as3.interfaces
  2. {
  3.    public interface INotification
  4.    {
  5.        
  6.       
  7.       function getType() : String;
  8.       
  9.       function getName() : String;
  10.       
  11.       function toString() : String;
  12.       
  13.       function setBody(param1:Object) : void;
  14.       
  15.       function getBody() : Object;
  16.       
  17.       function setType(param1:String) : void;
  18.    }
  19. }
  20.