home *** CD-ROM | disk | FTP | other *** search
- package com.facebook.data.stream
- {
- import flash.events.Event;
- import flash.events.EventDispatcher;
- import flash.events.IEventDispatcher;
- import mx.events.PropertyChangeEvent;
-
- public class ProfileData implements IEventDispatcher
- {
- private var _bindingEventDispatcher:EventDispatcher = new EventDispatcher(IEventDispatcher(this));
-
- private var _116079url:String;
-
- private var _3373707name:String;
-
- private var _1214494066pic_square:String;
-
- private var _3355id:String;
-
- public function ProfileData()
- {
- super();
- }
-
- public function dispatchEvent(param1:Event) : Boolean
- {
- return this._bindingEventDispatcher.dispatchEvent(param1);
- }
-
- public function willTrigger(param1:String) : Boolean
- {
- return this._bindingEventDispatcher.willTrigger(param1);
- }
-
- public function removeEventListener(param1:String, param2:Function, param3:Boolean = false) : void
- {
- this._bindingEventDispatcher.removeEventListener(param1,param2,param3);
- }
-
- [Bindable(event="propertyChange")]
- public function get name() : String
- {
- return this._3373707name;
- }
-
- public function addEventListener(param1:String, param2:Function, param3:Boolean = false, param4:int = 0, param5:Boolean = false) : void
- {
- this._bindingEventDispatcher.addEventListener(param1,param2,param3,param4,param5);
- }
-
- public function set name(param1:String) : void
- {
- var _loc2_:Object = this._3373707name;
- if(_loc2_ !== param1)
- {
- this._3373707name = param1;
- this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"name",_loc2_,param1));
- }
- }
-
- [Bindable(event="propertyChange")]
- public function get id() : String
- {
- return this._3355id;
- }
-
- public function set url(param1:String) : void
- {
- var _loc2_:Object = this._116079url;
- if(_loc2_ !== param1)
- {
- this._116079url = param1;
- this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"url",_loc2_,param1));
- }
- }
-
- public function set pic_square(param1:String) : void
- {
- var _loc2_:Object = this._1214494066pic_square;
- if(_loc2_ !== param1)
- {
- this._1214494066pic_square = param1;
- this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"pic_square",_loc2_,param1));
- }
- }
-
- [Bindable(event="propertyChange")]
- public function get url() : String
- {
- return this._116079url;
- }
-
- [Bindable(event="propertyChange")]
- public function get pic_square() : String
- {
- return this._1214494066pic_square;
- }
-
- public function set id(param1:String) : void
- {
- var _loc2_:Object = this._3355id;
- if(_loc2_ !== param1)
- {
- this._3355id = param1;
- this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"id",_loc2_,param1));
- }
- }
-
- public function hasEventListener(param1:String) : Boolean
- {
- return this._bindingEventDispatcher.hasEventListener(param1);
- }
- }
- }
-
-