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