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

  1. package mx.core
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface ISWFBridgeGroup
  6.    {
  7.       function getChildBridgeProvider(param1:IEventDispatcher) : ISWFBridgeProvider;
  8.       
  9.       function removeChildBridge(param1:IEventDispatcher) : void;
  10.       
  11.       function get parentBridge() : IEventDispatcher;
  12.       
  13.       function addChildBridge(param1:IEventDispatcher, param2:ISWFBridgeProvider) : void;
  14.       
  15.       function set parentBridge(param1:IEventDispatcher) : void;
  16.       
  17.       function containsBridge(param1:IEventDispatcher) : Boolean;
  18.       
  19.       function getChildBridges() : Array;
  20.    }
  21. }
  22.  
  23.