home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / facebook / delegates / IFacebookCallDelegate.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  531 b   |  21 lines

  1. package com.facebook.delegates
  2. {
  3.    import com.facebook.net.FacebookCall;
  4.    import com.facebook.session.IFacebookSession;
  5.    import flash.events.IEventDispatcher;
  6.    
  7.    public interface IFacebookCallDelegate extends IEventDispatcher
  8.    {
  9.       function get session() : IFacebookSession;
  10.       
  11.       function close() : void;
  12.       
  13.       function set call(param1:FacebookCall) : void;
  14.       
  15.       function set session(param1:IFacebookSession) : void;
  16.       
  17.       function get call() : FacebookCall;
  18.    }
  19. }
  20.  
  21.