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

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