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 * ==================================================================== 25 * 26 * History : 27 * Who yyyy/mm/dd Action 28 * -------- ---------- ------ 29 */ 30 31 32 package org.otvl.sbxbsamp.simple; 33 34 35 // Insert here additional imports 36 37 /*** 38 * 39 * @author 40 * @version 41 */ 42 43 44 public class TheElement 45 { 46 /*------------------------------------------------------------------------- 47 * Attributes declaration 48 *-------------------------------------------------------------------------*/ 49 /*** 50 * 51 */ 52 private String name; 53 54 55 /*------------------------------------------------------------------------- 56 * Associations declaration 57 *-------------------------------------------------------------------------*/ 58 59 60 /*------------------------------------------------------------------------- 61 * Operations 62 *-------------------------------------------------------------------------*/ 63 64 65 /*------------------------------------------------------------------------- 66 * Attribute accessors 67 *-------------------------------------------------------------------------*/ 68 //------------------------ 69 // Accessors for attribute name 70 //------------------------ 71 /*** 72 * Returns the name.<br/> 73 * 74 * @return String 75 */ 76 public String getName() { 77 String vName = name; 78 return vName; 79 } 80 81 /*** 82 * Sets the name.<br/> 83 * 84 * @param name The name to set 85 */ 86 public void setName(String name) { 87 this.name = name; 88 } 89 90 91 92 /*------------------------------------------------------------------------- 93 * Association accessors 94 *-------------------------------------------------------------------------*/ 95 96 }