X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/04b05946ab640eaf9135a73772b704dd41c323e7..717c14c014e3c988bcb392599a47ffa92630da78:/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/events/MatchEvent.as diff --git a/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/events/MatchEvent.as b/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/events/MatchEvent.as new file mode 100755 index 00000000..65b86885 --- /dev/null +++ b/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/events/MatchEvent.as @@ -0,0 +1,26 @@ +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; + } + } +} \ No newline at end of file