EventListenerSource acts as a source for listeners by declaring basic
methods to add, remove and get listeners.
public function addListener(listener):Void
Adds the passed-in listener.
listener | the listener to add |
public function addAllListeners(listeners:Array):Void
Adds all listeners contained in the passed-in listeners array.
listeners | the listeners to add |
public function removeListener(listener):Void
Removes the passed-in listener.
listener | the listener to remove |