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

  1. package com.facebook.data.stream
  2. {
  3.    import com.facebook.data.FacebookData;
  4.    import com.facebook.data.photos.AlbumCollection;
  5.    import mx.events.PropertyChangeEvent;
  6.    
  7.    public class GetStreamData extends FacebookData
  8.    {
  9.       private var _1884266413stories:StreamStoryCollection;
  10.       
  11.       private var _1415163932albums:AlbumCollection;
  12.       
  13.       private var _1002263574profiles:ProfileCollection;
  14.       
  15.       public function GetStreamData()
  16.       {
  17.          super();
  18.       }
  19.       
  20.       [Bindable(event="propertyChange")]
  21.       public function get albums() : AlbumCollection
  22.       {
  23.          return this._1415163932albums;
  24.       }
  25.       
  26.       public function set stories(param1:StreamStoryCollection) : void
  27.       {
  28.          var _loc2_:Object = this._1884266413stories;
  29.          if(_loc2_ !== param1)
  30.          {
  31.             this._1884266413stories = param1;
  32.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"stories",_loc2_,param1));
  33.          }
  34.       }
  35.       
  36.       [Bindable(event="propertyChange")]
  37.       public function get profiles() : ProfileCollection
  38.       {
  39.          return this._1002263574profiles;
  40.       }
  41.       
  42.       public function set albums(param1:AlbumCollection) : void
  43.       {
  44.          var _loc2_:Object = this._1415163932albums;
  45.          if(_loc2_ !== param1)
  46.          {
  47.             this._1415163932albums = param1;
  48.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"albums",_loc2_,param1));
  49.          }
  50.       }
  51.       
  52.       [Bindable(event="propertyChange")]
  53.       public function get stories() : StreamStoryCollection
  54.       {
  55.          return this._1884266413stories;
  56.       }
  57.       
  58.       public function set profiles(param1:ProfileCollection) : void
  59.       {
  60.          var _loc2_:Object = this._1002263574profiles;
  61.          if(_loc2_ !== param1)
  62.          {
  63.             this._1002263574profiles = param1;
  64.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"profiles",_loc2_,param1));
  65.          }
  66.       }
  67.    }
  68. }
  69.  
  70.