home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2012 April / ME_04_2012.iso / Video-Tutorial / iPhoto / media / player.swf / scripts / mx / rpc / IResponder.as
Encoding:
Text File  |  2011-11-11  |  167 b   |  11 lines

  1. package mx.rpc
  2. {
  3.    public interface IResponder
  4.    {
  5.       function result(param1:Object) : void;
  6.       
  7.       function fault(param1:Object) : void;
  8.    }
  9. }
  10.  
  11.