1
2
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 interface SubTestBean2Interface
22 {
23 /***
24 * Getter for property testProp1.
25 *
26 * @return Value of property testProp1.
27 */
28 String getTestProp1();
29
30 /***
31 * Setter for property testProp1.
32 *
33 * @param testProp1 New value of property testProp1.
34 */
35 void setTestProp1(final String testProp1);
36 }