| Package | feathers.core |
| Interface | public interface IFeathersEventDispatcher |
starling.events.EventDispatcher
in helpful interface form.
Never cast an object to this type. Cast to EventDispatcher
instead. This interface exists only to support easier code hinting.
See also
| Method | Defined By | ||
|---|---|---|---|
addEventListener(type:String, listener:Function):void | IFeathersEventDispatcher | ||
dispatchEvent(event:Event):void | IFeathersEventDispatcher | ||
dispatchEventWith(type:String, bubbles:Boolean = false, data:Object = null):void | IFeathersEventDispatcher | ||
hasEventListener(type:String):Boolean | IFeathersEventDispatcher | ||
removeEventListener(type:String, listener:Function):void | IFeathersEventDispatcher | ||
removeEventListeners(type:String = null):void | IFeathersEventDispatcher | ||
| addEventListener | () | method |
public function addEventListener(type:String, listener:Function):void
Parameters
type:String | |
listener:Function |
See also
| dispatchEvent | () | method |
| dispatchEventWith | () | method |
public function dispatchEventWith(type:String, bubbles:Boolean = false, data:Object = null):void
Parameters
type:String | |
bubbles:Boolean (default = false) | |
data:Object (default = null) |
See also
| hasEventListener | () | method |
public function hasEventListener(type:String):Boolean
Parameters
type:String |
Boolean |
See also
| removeEventListener | () | method |
public function removeEventListener(type:String, listener:Function):void
Parameters
type:String | |
listener:Function |
See also
| removeEventListeners | () | method |
public function removeEventListeners(type:String = null):void
Parameters
type:String (default = null) |
See also