Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (415 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 MatchEvent
7
		extends Event
8
	{
9
		private var _matches:Array;
10
		
11
		public function MatchEvent()
12
		{
13
			super(Dict.MATCH);
14
		}
15
		
16
		public function set matches(matches:Array):void
17
		{
18
			this._matches = matches;
19
		}
20
		
21
		public function get matches():Array
22
		{
23
			return this._matches;
24
		}
25
	}
26
}