blob: 8b7e459dc3fec86068b630897eb7fbe0b208472a [file] [log] [blame]
package org.metaabm.gen.test;
/**
* Basic Movement Model Java Implementation. Most recent version. Generated by
* metaabm system: Apr 13, 2008 3:03:48 PM EDT in project:
* org.metaabm.gen.repast.test (testing)
*/
public interface IBasicMovementModel {
/**
* .
*/
public void testFake();
/**
* Gets the Area Count property for Basic Movement Model.
*
* @return The number of areas to create.
*/
public int getAreaCount();
/**
* Sets the Area Count property for Basic Movement Model. The number of
* areas to create.
*
* @param _areaCount the new Area Count value
*/
public void setAreaCount(int _areaCount);
/**
* Gets the Network Agent Count property for Basic Movement Model.
*
* @return The number of network agents to create.
*/
public int getNetworkAgentCount();
/**
* Sets the Network Agent Count property for Basic Movement Model. The
* number of network agents to create.
*
* @param _networkAgentCount the new Network Agent Count value
*/
public void setNetworkAgentCount(int _networkAgentCount);
/**
* Gets the Basic Movement Agent Count property for Basic Movement Model.
*
* @return The number of generate act people to create.
*/
public int getBasicMovementAgentCount();
/**
* Sets the Basic Movement Agent Count property for Basic Movement Model.
* The number of generate act people to create.
*
* @param _basicMovementAgentCount the new Basic Movement Agent Count value
*/
public void setBasicMovementAgentCount(int _basicMovementAgentCount);
/**
* Gets the Complex Space Agent Count property for Basic Movement Model.
*
* @return The number of complex space agents to create.
*/
public int getComplexSpaceAgentCount();
/**
* Sets the Complex Space Agent Count property for Basic Movement Model. The
* number of complex space agents to create.
*
* @param _complexSpaceAgentCount the new Complex Space Agent Count value
*/
public void setComplexSpaceAgentCount(int _complexSpaceAgentCount);
/**
* Gets the Act Non Movement Person Count property for Basic Movement Model.
*
* @return The number of act non movement persons to create.
*/
public int getActNonMovementPersonCount();
/**
* Sets the Act Non Movement Person Count property for Basic Movement Model.
* The number of act non movement persons to create.
*
* @param _actNonMovementPersonCount the new Act Non Movement Person Count
* value
*/
public void setActNonMovementPersonCount(int _actNonMovementPersonCount);
/**
* Gets the Basic Movement State Agent Count property for Basic Movement
* Model.
*
* @return The number of basic movement state agents to create.
*/
public int getBasicMovementStateAgentCount();
/**
* Sets the Basic Movement State Agent Count property for Basic Movement
* Model. The number of basic movement state agents to create.
*
* @param _basicMovementStateAgentCount the new Basic Movement State Agent
* Count value
*/
public void setBasicMovementStateAgentCount(int _basicMovementStateAgentCount);
}