ScaleVo.as 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.imt.intimamedia.vo
  2. {
  3. [RemoteClass(alias="com.imt.intimamedia.vo.ScaleVo")]
  4. [Bindable]
  5. /**
  6. * Objet échelle de l'application
  7. */
  8. public class ScaleVo
  9. {
  10. private var _id : int = 0;
  11. private var _value : Number;
  12. private var _length : int;
  13. private var _xFirstPoint : int;
  14. private var _yFirstPoint : int;
  15. private var _xLastPoint : int;
  16. private var _yLastPoint : int;
  17. public function ScaleVo()
  18. {
  19. }
  20. public function get id () : int
  21. {
  22. return _id;
  23. }
  24. public function set id ( value : int ) : void
  25. {
  26. _id = value;
  27. }
  28. public function get value () : Number
  29. {
  30. return _value;
  31. }
  32. public function set value ( val : Number ) : void
  33. {
  34. _value = val;
  35. }
  36. public function get length () : int
  37. {
  38. return _length;
  39. }
  40. public function set length ( value : int ) : void
  41. {
  42. _length = value;
  43. }
  44. public function get xFirstPoint () : int
  45. {
  46. return _xFirstPoint;
  47. }
  48. public function set xFirstPoint ( value : int ) : void
  49. {
  50. _xFirstPoint = value;
  51. }
  52. public function get yFirstPoint () : int
  53. {
  54. return _yFirstPoint;
  55. }
  56. public function set yFirstPoint ( value : int ) : void
  57. {
  58. _yFirstPoint = value;
  59. }
  60. public function get xLastPoint () : int
  61. {
  62. return _xLastPoint;
  63. }
  64. public function set xLastPoint ( value : int ) : void
  65. {
  66. _xLastPoint = value;
  67. }
  68. public function get yLastPoint () : int
  69. {
  70. return _yLastPoint;
  71. }
  72. public function set yLastPoint ( value : int ) : void
  73. {
  74. _yLastPoint = value;
  75. }
  76. }
  77. }