home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / containers / utilityClasses / Layout.as < prev   
Encoding:
Text File  |  2008-09-02  |  766 b   |  40 lines

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