1
2
3
4
5
6
7 package nl.tudelft.dsol.introspection.beans;
8
9 /***
10 * @author (c) 2003 <a href="http://www.tudelft.nl">Delft University of
11 * Technology </a>, Delft, the Netherlands <br>
12 * <a href="http://www.tbm.tudelft.nl">Faculty of Technology, Policy and
13 * Management </a> <br>
14 * <a href="http://www.sk.tbm.tudelft.nl">Department of System
15 * Engineering </a> <br>
16 * Main researcher : <a
17 * href="http://www.tbm.tudelft.nl/webstaf/alexandv/">Dr. Ir. A.
18 * Verbraeck <a/><br>
19 * Assistant researchers <a
20 * href="http://www.tbm.tudelft.nl/webstaf/peterja">Ir. P.H.M. Jacobs
21 * </a> and <a href="http://www.tbm.tudelft.nl/webstaf/nielsl">Ir. N.A.
22 * Lang </a>
23 */
24 public class SubTestBean2 extends Object implements SubTestBean2Interface
25 {
26 /*** property 1 */
27 private String prop1 = "prop1_value";
28
29 /*** Holds value of property testProp2. */
30 private String testProp2;
31
32 /*** Creates new SubTestBean2 */
33 public SubTestBean2()
34 {
35 super();
36 }
37
38 /***
39 * Getter for property testProp1.
40 *
41 * @return Value of property testProp1.
42 */
43 public String getTestProp1()
44 {
45 return this.prop1;
46 }
47
48 /***
49 * Setter for property testProp1.
50 *
51 * @param testProp1 New value of property testProp1.
52 */
53 public void setTestProp1(final String testProp1)
54 {
55 this.prop1 = testProp1;
56 }
57
58 /***
59 * Getter for property testProp2.
60 *
61 * @return Value of property testProp2.
62 */
63 public String getTestProp2()
64 {
65 return this.testProp2;
66 }
67
68 /***
69 * Setter for property testProp2.
70 *
71 * @param testProp2 New value of property testProp2.
72 */
73 public void setTestProp2(final String testProp2)
74 {
75 this.testProp2 = testProp2;
76 }
77
78 }