home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / facebook / data / NumberResultData.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  763 b   |  32 lines

  1. package com.facebook.data
  2. {
  3.    import mx.events.PropertyChangeEvent;
  4.    
  5.    public class NumberResultData extends FacebookData
  6.    {
  7.       private var _111972721value:Number;
  8.       
  9.       public function NumberResultData()
  10.       {
  11.          super();
  12.       }
  13.       
  14.       [Bindable(event="propertyChange")]
  15.       public function get value() : Number
  16.       {
  17.          return this._111972721value;
  18.       }
  19.       
  20.       public function set value(param1:Number) : void
  21.       {
  22.          var _loc2_:Object = this._111972721value;
  23.          if(_loc2_ !== param1)
  24.          {
  25.             this._111972721value = param1;
  26.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"value",_loc2_,param1));
  27.          }
  28.       }
  29.    }
  30. }
  31.  
  32.