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 ActionLinkData implements IEventDispatcher
- {
- private var _3211051href:String;
-
- private var _bindingEventDispatcher:EventDispatcher = new EventDispatcher(IEventDispatcher(this));
-
- private var _3556653text:String;
-
- public function ActionLinkData()
- {
- super();
- }
-
- public function dispatchEvent(param1:Event) : Boolean
- {
- return this._bindingEventDispatcher.dispatchEvent(param1);
- }
-
- public function hasEventListener(param1:String) : Boolean
- {
- return this._bindingEventDispatcher.hasEventListener(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 href() : String
- {
- return this._3211051href;
- }
-
- 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);
- }
-
- [Bindable(event="propertyChange")]
- public function get text() : String
- {
- return this._3556653text;
- }
-
- public function set text(param1:String) : void
- {
- var _loc2_:Object = this._3556653text;
- if(_loc2_ !== param1)
- {
- this._3556653text = param1;
- this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"text",_loc2_,param1));
- }
- }
-
- public function set href(param1:String) : void
- {
- var _loc2_:Object = this._3211051href;
- if(_loc2_ !== param1)
- {
- this._3211051href = param1;
- this.dispatchEvent(PropertyChangeEvent.createUpdateEvent(this,"href",_loc2_,param1));
- }
- }
- }
- }
-
-