| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package com.imt.intimamedia.vo
- {
- [Bindable]
- /**
- * Objet d'affichage du Carroussel
- */
- public class GalleryElementVo
- {
- public function GalleryElementVo( title : String = "", image : String = "", legend : String = "", author : String = "" )
- {
- this.title = title;
- this.image = image;
- this.legend = legend;
- this.author = author;
- }
-
- private var _title : String;
- private var _image : String;
- private var _legend : String;
- private var _author : String;
-
- /**
- * Titre de la photo
- *
- * @default ""
- */
- public function get title () : String
- {
- return _title;
- }
-
- /**
- * @private
- */
- public function set title ( value : String ) : void
- {
- _title = value;
- }
-
- /**
- * Source de la photo
- *
- * @default ""
- */
- public function get image () : String
- {
- return _image;
- }
-
- /**
- * @private
- */
- public function set image ( value : String ) : void
- {
- _image = value;
- }
-
- /**
- * Légende de la photo
- *
- * @default ""
- */
- public function get legend () : String
- {
- return _legend;
- }
-
- /**
- * @private
- */
- public function set legend ( value : String ) : void
- {
- _legend = value;
- }
-
- /**
- * Auteur de la photo
- *
- * @default ""
- */
- public function get author () : String
- {
- return _author;
- }
-
- /**
- * @private
- */
- public function set author ( value : String ) : void
- {
- _author = value;
- }
- }
- }
|