X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/04b05946ab640eaf9135a73772b704dd41c323e7..717c14c014e3c988bcb392599a47ffa92630da78:/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/util/.svn/text-base/CompleteResponseEvent.as.svn-base diff --git a/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/util/.svn/text-base/CompleteResponseEvent.as.svn-base b/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/util/.svn/text-base/CompleteResponseEvent.as.svn-base new file mode 100644 index 00000000..fc552f1b --- /dev/null +++ b/platforma/static/filebrowser/uploadify/com/adobe/protocols/dict/util/.svn/text-base/CompleteResponseEvent.as.svn-base @@ -0,0 +1,25 @@ +package com.adobe.protocols.dict.util +{ + import flash.events.Event; + + public class CompleteResponseEvent + extends Event + { + private var _response:String; + + public function CompleteResponseEvent() + { + super(SocketHelper.COMPLETE_RESPONSE); + } + + public function set response(response:String):void + { + this._response = response; + } + + public function get response():String + { + return this._response; + } + } +} \ No newline at end of file