home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / core / IFlexModuleFactory.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  375 b   |  19 lines

  1. package mx.core
  2. {
  3.    import flash.utils.Dictionary;
  4.    
  5.    public interface IFlexModuleFactory
  6.    {
  7.       function get preloadedRSLs() : Dictionary;
  8.       
  9.       function allowInsecureDomain(... rest) : void;
  10.       
  11.       function create(... rest) : Object;
  12.       
  13.       function allowDomain(... rest) : void;
  14.       
  15.       function info() : Object;
  16.    }
  17. }
  18.  
  19.