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

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