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