Sha256: 6a6f43b0414c85cfa337a251bbe090fb25b6a1bde788753d711eafc7c8ca1e69
Contents?: true
Size: 569 Bytes
Versions: 28
Compression:
Stored size: 569 Bytes
Contents
interface com.asunit.util.Observable { // Can accept either an event:String or an event:String[] // if the observer wants to subscribe to multiple events. public function addEventListener(event:String, observer:Object, scope:Object):Void; public function addListener(observer:Object, scope:Object):Void; // Should return bool false if handler ref was not found. // Should return bool true if handler ref was found public function removeEventListener(event:String, observer:Object):Boolean; public function removeListener(observer:Object):Boolean; }
Version data entries
28 entries across 28 versions & 1 rubygems