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

  1. package caurina.transitions
  2. {
  3.    public class SpecialPropertyModifier
  4.    {
  5.       public var getValue:Function;
  6.       
  7.       public var modifyValues:Function;
  8.       
  9.       public function SpecialPropertyModifier(param1:Function, param2:Function)
  10.       {
  11.          super();
  12.          this.modifyValues = param1;
  13.          this.getValue = param2;
  14.       }
  15.       
  16.       public function toString() : String
  17.       {
  18.          var _loc1_:* = "";
  19.          _loc1_ += "[SpecialPropertyModifier ";
  20.          _loc1_ += "modifyValues:" + String(this.modifyValues);
  21.          _loc1_ += ", ";
  22.          _loc1_ += "getValue:" + String(this.getValue);
  23.          return _loc1_ + "]";
  24.       }
  25.    }
  26. }
  27.  
  28.