Project

General

Profile

Statistics
| Branch: | Revision:

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

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