/*
* SubTestBeanInterface.java Created on May 31, 2001, 10:58 AM
*/
package nl.tudelft.dsol.introspection.beans;
/**
* @author (c) 2003 Delft University of Technology , Delft, the Netherlands
* Faculty of Technology, Policy and Management
* Department of System Engineering
* Main researcher : Dr. Ir. A. Verbraeck
* Assistant researchers Ir. P.H.M. Jacobs and
* Ir. N.A. Lang
*/
public interface SubTestBean2Interface
{
/**
* Getter for property testProp1.
* @return Value of property testProp1.
*/
String getTestProp1();
/**
* Setter for property testProp1.
* @param testProp1 New value of property testProp1.
*/
void setTestProp1(final String testProp1);
}