View Javadoc
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 B.
37   * @author
38   * @version
39   */
40  
41  
42  public class ClsB
43  {
44  	/*-------------------------------------------------------------------------
45  	 * Attributes declaration
46  	 *-------------------------------------------------------------------------*/
47  	/***
48  	 * 
49  	 */
50  	private String b;
51  	/***
52  	 * 
53  	 */
54  	private String b1;
55  	/***
56  	 * 
57  	 */
58  	private String b2;
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 b
76  	//------------------------
77  	/***
78  	 * Returns the b.<br/>
79  	 * 
80  	 * @return String
81  	 */
82  	public String getB() {
83  		String vB = b;
84  		return vB;
85  	}
86  
87  	/***
88  	 * Sets the b.<br/>
89  	 * 
90  	 * @param b The b to set
91  	 */
92  	public void setB(String b) {
93  		this.b = b;
94  	}
95  
96  	//------------------------
97  	// Accessors for attribute b1
98  	//------------------------
99  	/***
100 	 * Returns the b1.<br/>
101 	 * 
102 	 * @return String
103 	 */
104 	public String getB1() {
105 		String vB1 = b1;
106 		return vB1;
107 	}
108 
109 	/***
110 	 * Sets the b1.<br/>
111 	 * 
112 	 * @param b1 The b1 to set
113 	 */
114 	public void setB1(String b1) {
115 		this.b1 = b1;
116 	}
117 
118 	//------------------------
119 	// Accessors for attribute b2
120 	//------------------------
121 	/***
122 	 * Returns the b2.<br/>
123 	 * 
124 	 * @return String
125 	 */
126 	public String getB2() {
127 		String vB2 = b2;
128 		return vB2;
129 	}
130 
131 	/***
132 	 * Sets the b2.<br/>
133 	 * 
134 	 * @param b2 The b2 to set
135 	 */
136 	public void setB2(String b2) {
137 		this.b2 = b2;
138 	}
139 
140 
141 
142 	/*-------------------------------------------------------------------------
143 	 * Association accessors
144 	 *-------------------------------------------------------------------------*/
145 
146 }