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

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