| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.imt.intimamedia.vo
- {
-
- [RemoteClass(alias="com.imt.intimamedia.vo.AreaVo")]
- [Bindable]
- public class AreaVo
- {
- private var _id : int = 0;
- private var _value : Number;
- private var _points : Array = new Array();
-
-
- public function get id () : int
- {
- return _id;
- }
-
- public function set id ( value : int ) : void
- {
- _id = value;
- }
-
- public function get value () : Number
- {
- return _value;
- }
-
- public function set value ( val : Number ) : void
- {
- _value = val;
- }
-
- public function get points () : Array
- {
- return _points;
- }
-
- public function set points ( value : Array ) : void
- {
- _points = value;
- }
- }
- }
|