aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as
diff options
context:
space:
mode:
Diffstat (limited to 'vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as')
-rw-r--r--vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as b/vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as
new file mode 100644
index 000000000..9b406e95c
--- /dev/null
+++ b/vendors/uploadify/com/adobe/protocols/dict/events/DictionaryServerEvent.as
@@ -0,0 +1,26 @@
+package com.adobe.protocols.dict.events
+{
+ import flash.events.Event;
+ import com.adobe.protocols.dict.Dict;
+
+ public class DictionaryServerEvent
+ extends Event
+ {
+ private var _servers:Array;
+
+ public function DictionaryServerEvent()
+ {
+ super(Dict.SERVERS);
+ }
+
+ public function set servers(servers:Array):void
+ {
+ this._servers = servers;
+ }
+
+ public function get servers():Array
+ {
+ return this._servers;
+ }
+ }
+} \ No newline at end of file