home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / facebook / data / notifications / GetNotificationData.as next >
Encoding:
Text File  |  2010-06-23  |  2.7 KB  |  87 lines

  1. package com.facebook.data.notifications
  2. {
  3.    import com.facebook.data.FacebookData;
  4.    import mx.events.PropertyChangeEvent;
  5.    
  6.    public class GetNotificationData extends FacebookData
  7.    {
  8.       private var _2011259082group_invites:Array;
  9.       
  10.       private var _757115001friendsRequests:Array;
  11.       
  12.       private var _823645719notificationCollection:NotificationCollection;
  13.       
  14.       private var _1950182939event_invites:Array;
  15.       
  16.       public function GetNotificationData()
  17.       {
  18.          super();
  19.       }
  20.       
  21.       [Bindable(event="propertyChange")]
  22.       public function get event_invites() : Array
  23.       {
  24.          return this._1950182939event_invites;
  25.       }
  26.       
  27.       [Bindable(event="propertyChange")]
  28.       public function get notificationCollection() : NotificationCollection
  29.       {
  30.          return this._823645719notificationCollection;
  31.       }
  32.       
  33.       [Bindable(event="propertyChange")]
  34.       public function get group_invites() : Array
  35.       {
  36.          return this._2011259082group_invites;
  37.       }
  38.       
  39.       public function set event_invites(param1:Array) : void
  40.       {
  41.          var _loc2_:Object = this._1950182939event_invites;
  42.          if(_loc2_ !== param1)
  43.          {
  44.             this._1950182939event_invites = param1;
  45.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"event_invites",_loc2_,param1));
  46.          }
  47.       }
  48.       
  49.       public function set friendsRequests(param1:Array) : void
  50.       {
  51.          var _loc2_:Object = this._757115001friendsRequests;
  52.          if(_loc2_ !== param1)
  53.          {
  54.             this._757115001friendsRequests = param1;
  55.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"friendsRequests",_loc2_,param1));
  56.          }
  57.       }
  58.       
  59.       public function set group_invites(param1:Array) : void
  60.       {
  61.          var _loc2_:Object = this._2011259082group_invites;
  62.          if(_loc2_ !== param1)
  63.          {
  64.             this._2011259082group_invites = param1;
  65.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"group_invites",_loc2_,param1));
  66.          }
  67.       }
  68.       
  69.       [Bindable(event="propertyChange")]
  70.       public function get friendsRequests() : Array
  71.       {
  72.          return this._757115001friendsRequests;
  73.       }
  74.       
  75.       public function set notificationCollection(param1:NotificationCollection) : void
  76.       {
  77.          var _loc2_:Object = this._823645719notificationCollection;
  78.          if(_loc2_ !== param1)
  79.          {
  80.             this._823645719notificationCollection = param1;
  81.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"notificationCollection",_loc2_,param1));
  82.          }
  83.       }
  84.    }
  85. }
  86.  
  87.