Project

General

Profile

Statistics
| Branch: | Revision:

colonymech / docs / www / colonyscout / internal / includes / uploadify / com / adobe / protocols / dict / events / MatchStrategiesEvent.as @ f59acf11

History | View | Annotate | Download (467 Bytes)

1
package com.adobe.protocols.dict.events
2
{
3
	import flash.events.Event;
4
	import com.adobe.protocols.dict.Dict;
5

    
6
	public class MatchStrategiesEvent
7
		extends Event
8
	{
9
		private var _strategies:Array;
10
		
11
		public function MatchStrategiesEvent()
12
		{
13
			super(Dict.MATCH_STRATEGIES);
14
		}
15
		
16
		public function set strategies(strategies:Array):void
17
		{
18
			this._strategies = strategies;
19
		}
20
		
21
		public function get strategies():Array
22
		{
23
			return this._strategies;
24
		}
25
	}
26
}