1
2
3
4
5
6
7 package nl.tudelft.dsol.introspection.beans;
8
9 /***
10 *
11 * @author (c) 2003 <a href="http://www.tudelft.nl">Delft University of
12 * Technology </a>, Delft, the Netherlands <br>
13 * <a href="http://www.tbm.tudelft.nl">Faculty of Technology, Policy and
14 * Management </a> <br>
15 * <a href="http://www.sk.tbm.tudelft.nl">Department of System
16 * Engineering </a> <br>
17 * Main researcher : <a
18 * href="http://www.tbm.tudelft.nl/webstaf/alexandv/">Dr. Ir. A.
19 * Verbraeck <a/><br>
20 * Assistant researchers <a
21 * href="http://www.tbm.tudelft.nl/webstaf/peterja">Ir. P.H.M. Jacobs
22 * </a> and <a href="http://www.tbm.tudelft.nl/webstaf/nielsl">Ir. N.A.
23 * Lang </a>
24 */
25 public interface SubTestBean2Interface
26 {
27 /***
28 * Getter for property testProp1.
29 *
30 * @return Value of property testProp1.
31 */
32 String getTestProp1();
33
34 /***
35 * Setter for property testProp1.
36 *
37 * @param testProp1 New value of property testProp1.
38 */
39 void setTestProp1(final String testProp1);
40 }