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

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public final class UIComponentCachePolicy
  6.    {
  7.       mx_internal static const VERSION:String = "3.5.0.12683";
  8.       
  9.       public static const AUTO:String = "auto";
  10.       
  11.       public static const OFF:String = "off";
  12.       
  13.       public static const ON:String = "on";
  14.       
  15.       public function UIComponentCachePolicy()
  16.       {
  17.          super();
  18.       }
  19.    }
  20. }
  21.  
  22.