Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (511 Bytes)

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

    
7
	public class DefinitionEvent
8
		extends Event
9
	{
10
		private var _definition:Definition;
11
		
12
		public function DefinitionEvent()
13
		{
14
			super(Dict.DEFINITION);
15
		}
16
		
17
		public function set definition(definition:Definition):void
18
		{
19
			this._definition = definition;
20
		}
21
		
22
		public function get definition():Definition
23
		{
24
			return this._definition;
25
		}
26
	}
27
}