home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / containers / utilityClasses / Layout.as < prev   
Encoding:
Text File  |  2010-06-23  |  933 b   |  43 lines

  1. package mx.containers.utilityClasses
  2. {
  3.    import mx.core.Container;
  4.    import mx.core.mx_internal;
  5.    import mx.resources.IResourceManager;
  6.    import mx.resources.ResourceManager;
  7.    
  8.    use namespace mx_internal;
  9.    
  10.    public class Layout
  11.    {
  12.       mx_internal static const VERSION:String = "3.5.0.12683";
  13.       
  14.       private var _target:Container;
  15.       
  16.       protected var resourceManager:IResourceManager = ResourceManager.getInstance();
  17.       
  18.       public function Layout()
  19.       {
  20.          super();
  21.       }
  22.       
  23.       public function get target() : Container
  24.       {
  25.          return _target;
  26.       }
  27.       
  28.       public function set target(param1:Container) : void
  29.       {
  30.          _target = param1;
  31.       }
  32.       
  33.       public function measure() : void
  34.       {
  35.       }
  36.       
  37.       public function updateDisplayList(param1:Number, param2:Number) : void
  38.       {
  39.       }
  40.    }
  41. }
  42.  
  43.