aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/com/adobe/protocols/dict/events/MatchStrategiesEvent.as
blob: 75b76f889dfa1e89c12537fd340915e6ef2f4232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
		}
	}
}