1 /* 2 * sbxb library, part of ULMgen product 3 * Copyright (C) 2003,2005 Thierry Beigbeder 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 /* 20 * $Header: $ 21 * $Revision: $ 22 * $Date: $ 23 * 24 * History : 25 * Who yyyy/mm/dd Action 26 * -------- ---------- ------ 27 */ 28 29 30 package org.otvl.sbxbsamp.simple; 31 32 import java.util.Date; 33 34 // Insert here additional imports 35 36 /*** 37 * 38 * @author 39 * @version 40 */ 41 42 43 public class Meeting 44 { 45 /*------------------------------------------------------------------------- 46 * Attributes declaration 47 *-------------------------------------------------------------------------*/ 48 /*** 49 * 50 */ 51 private Date date; 52 /*** 53 * 54 */ 55 private String description; 56 57 58 /*------------------------------------------------------------------------- 59 * Associations declaration 60 *-------------------------------------------------------------------------*/ 61 62 63 /*------------------------------------------------------------------------- 64 * Operations 65 *-------------------------------------------------------------------------*/ 66 67 68 /*------------------------------------------------------------------------- 69 * Attribute accessors 70 *-------------------------------------------------------------------------*/ 71 //------------------------ 72 // Accessors for attribute date 73 //------------------------ 74 /*** 75 * Returns the date.<br/> 76 * 77 * @return Date 78 */ 79 public Date getDate() { 80 Date vDate = date; 81 return vDate; 82 } 83 84 /*** 85 * Sets the date.<br/> 86 * 87 * @param date The date to set 88 */ 89 public void setDate(Date date) { 90 this.date = date; 91 } 92 93 //------------------------ 94 // Accessors for attribute description 95 //------------------------ 96 /*** 97 * Returns the description.<br/> 98 * 99 * @return String 100 */ 101 public String getDescription() { 102 String vDescription = description; 103 return vDescription; 104 } 105 106 /*** 107 * Sets the description.<br/> 108 * 109 * @param description The description to set 110 */ 111 public void setDescription(String description) { 112 this.description = description; 113 } 114 115 116 117 /*------------------------------------------------------------------------- 118 * Association accessors 119 *-------------------------------------------------------------------------*/ 120 121 }