home *** CD-ROM | disk | FTP | other *** search
- package mx.containers.utilityClasses
- {
- import mx.core.Container;
- import mx.core.mx_internal;
-
- use namespace mx_internal;
-
- public class Layout
- {
-
- mx_internal static const VERSION:String = "2.0.1.0";
-
-
- private var _target:Container;
-
- public function Layout()
- {
- super();
- }
-
- public function set target(param1:Container) : void
- {
- _target = param1;
- }
-
- public function measure() : void
- {
- }
-
- public function updateDisplayList(param1:Number, param2:Number) : void
- {
- }
-
- public function get target() : Container
- {
- return _target;
- }
- }
- }
-