Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (658 Bytes)

1
package com.adobe.protocols.dict
2
{
3
	public class Definition
4
	{
5
		private var _definition:String;
6
		private var _database:String;
7
		private var _term:String;
8
		
9
		public function set definition(definition:String):void
10
		{
11
			this._definition = definition;
12
		}
13
		
14
		public function get definition():String
15
		{
16
			return this._definition;
17
		}
18

    
19
		public function set database(database:String):void
20
		{
21
			this._database = database;
22
		}
23
		
24
		public function get database():String
25
		{
26
			return this._database;
27
		}
28

    
29
		public function set term(term:String):void
30
		{
31
			this._term = term;
32
		}
33
		
34
		public function get term():String
35
		{
36
			return this._term;
37
		}
38
	}
39
}