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

  1. package com.facebook.data.stream
  2. {
  3.    import flash.events.Event;
  4.    import flash.events.EventDispatcher;
  5.    import flash.events.IEventDispatcher;
  6.    import mx.events.PropertyChangeEvent;
  7.    
  8.    public class PostCommentData implements IEventDispatcher
  9.    {
  10.       private var _1266097595fromid:String;
  11.       
  12.       private var _3556653text:String;
  13.       
  14.       private var _3560141time:Date;
  15.       
  16.       private var _3355id:String;
  17.       
  18.       private var _bindingEventDispatcher:EventDispatcher = new EventDispatcher(IEventDispatcher(this));
  19.       
  20.       public function PostCommentData()
  21.       {
  22.          super();
  23.       }
  24.       
  25.       [Bindable(event="propertyChange")]
  26.       public function get fromid() : String
  27.       {
  28.          return this._1266097595fromid;
  29.       }
  30.       
  31.       public function willTrigger(param1:String) : Boolean
  32.       {
  33.          return this._bindingEventDispatcher.willTrigger(param1);
  34.       }
  35.       
  36.       public function dispatchEvent(param1:Event) : Boolean
  37.       {
  38.          return this._bindingEventDispatcher.dispatchEvent(param1);
  39.       }
  40.       
  41.       public function set fromid(param1:String) : void
  42.       {
  43.          var _loc2_:Object = this._1266097595fromid;
  44.          if(_loc2_ !== param1)
  45.          {
  46.             this._1266097595fromid = param1;
  47.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"fromid",_loc2_,param1));
  48.          }
  49.       }
  50.       
  51.       public function removeEventListener(param1:String, param2:Function, param3:Boolean = false) : void
  52.       {
  53.          this._bindingEventDispatcher.removeEventListener(param1,param2,param3);
  54.       }
  55.       
  56.       [Bindable(event="propertyChange")]
  57.       public function get time() : Date
  58.       {
  59.          return this._3560141time;
  60.       }
  61.       
  62.       public function set time(param1:Date) : void
  63.       {
  64.          var _loc2_:Object = this._3560141time;
  65.          if(_loc2_ !== param1)
  66.          {
  67.             this._3560141time = param1;
  68.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"time",_loc2_,param1));
  69.          }
  70.       }
  71.       
  72.       [Bindable(event="propertyChange")]
  73.       public function get id() : String
  74.       {
  75.          return this._3355id;
  76.       }
  77.       
  78.       public function addEventListener(param1:String, param2:Function, param3:Boolean = false, param4:int = 0, param5:Boolean = false) : void
  79.       {
  80.          this._bindingEventDispatcher.addEventListener(param1,param2,param3,param4,param5);
  81.       }
  82.       
  83.       public function set text(param1:String) : void
  84.       {
  85.          var _loc2_:Object = this._3556653text;
  86.          if(_loc2_ !== param1)
  87.          {
  88.             this._3556653text = param1;
  89.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"text",_loc2_,param1));
  90.          }
  91.       }
  92.       
  93.       [Bindable(event="propertyChange")]
  94.       public function get text() : String
  95.       {
  96.          return this._3556653text;
  97.       }
  98.       
  99.       public function hasEventListener(param1:String) : Boolean
  100.       {
  101.          return this._bindingEventDispatcher.hasEventListener(param1);
  102.       }
  103.       
  104.       public function set id(param1:String) : void
  105.       {
  106.          var _loc2_:Object = this._3355id;
  107.          if(_loc2_ !== param1)
  108.          {
  109.             this._3355id = param1;
  110.             this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"id",_loc2_,param1));
  111.          }
  112.       }
  113.    }
  114. }
  115.  
  116.