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.complex; 31 32 33 // Insert here additional imports 34 35 /*** 36 * Sample class D. 37 * @author 38 * @version 39 */ 40 41 42 public class ClsD 43 { 44 /*------------------------------------------------------------------------- 45 * Attributes declaration 46 *-------------------------------------------------------------------------*/ 47 /*** 48 * 49 */ 50 private String attD; 51 /*** 52 * 53 */ 54 private String attD1; 55 /*** 56 * 57 */ 58 private String attD2; 59 60 61 /*------------------------------------------------------------------------- 62 * Associations declaration 63 *-------------------------------------------------------------------------*/ 64 65 66 /*------------------------------------------------------------------------- 67 * Operations 68 *-------------------------------------------------------------------------*/ 69 70 71 /*------------------------------------------------------------------------- 72 * Attribute accessors 73 *-------------------------------------------------------------------------*/ 74 //------------------------ 75 // Accessors for attribute attD 76 //------------------------ 77 /*** 78 * Returns the attD.<br/> 79 * 80 * @return String 81 */ 82 public String getAttD() { 83 String vAttD = attD; 84 return vAttD; 85 } 86 87 /*** 88 * Sets the attD.<br/> 89 * 90 * @param attD The attD to set 91 */ 92 public void setAttD(String attD) { 93 this.attD = attD; 94 } 95 96 //------------------------ 97 // Accessors for attribute attD1 98 //------------------------ 99 /*** 100 * Returns the attD1.<br/> 101 * 102 * @return String 103 */ 104 public String getAttD1() { 105 String vAttD1 = attD1; 106 return vAttD1; 107 } 108 109 /*** 110 * Sets the attD1.<br/> 111 * 112 * @param attD1 The attD1 to set 113 */ 114 public void setAttD1(String attD1) { 115 this.attD1 = attD1; 116 } 117 118 //------------------------ 119 // Accessors for attribute attD2 120 //------------------------ 121 /*** 122 * Returns the attD2.<br/> 123 * 124 * @return String 125 */ 126 public String getAttD2() { 127 String vAttD2 = attD2; 128 return vAttD2; 129 } 130 131 /*** 132 * Sets the attD2.<br/> 133 * 134 * @param attD2 The attD2 to set 135 */ 136 public void setAttD2(String attD2) { 137 this.attD2 = attD2; 138 } 139 140 141 142 /*------------------------------------------------------------------------- 143 * Association accessors 144 *-------------------------------------------------------------------------*/ 145 146 }