aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/com/adobe/protocols/dict/events/MatchEvent.as
blob: 65b868851b4fecf6d7007c2402c37cd7189230b3 (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 MatchEvent
		extends Event
	{
		private var _matches:Array;
		
		public function MatchEvent()
		{
			super(Dict.MATCH);
		}
		
		public function set matches(matches:Array):void
		{
			this._matches = matches;
		}
		
		public function get matches():Array
		{
			return this._matches;
		}
	}
}