Sha256: d9f897f45f1c8fb1efb1c5ca96954470cdf6bdab81dbbd3b51ba9df731d984ad
Contents?: true
Size: 440 Bytes
Versions: 1
Compression:
Stored size: 440 Bytes
Contents
package com.adobe.protocols.dict.events { import flash.events.Event; import com.adobe.protocols.dict.Dict; public class MatchEvent extends Event { private var _matches:Array; public function MatchEvent() { super(Dict.MATCH); } public function set matches(matches:Array):void { this._matches = matches; } public function get matches():Array { return this._matches; } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
saphira-0.1.1.beta1 | app/assets/images/saphira/com/adobe/protocols/dict/events/MatchEvent.as |