Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (482 Bytes)

1
package com.adobe.protocols.dict
2
{
3
	public class DictionaryServer
4
	{
5
		private var _server:String;
6
		private var _description:String;
7

    
8
		public function set server(server:String):void
9
		{
10
			this._server = server;
11
		}
12
		
13
		public function get server():String
14
		{
15
			return this._server;
16
		}
17

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