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; } } }