blob: 1279c633992aa853d8cc91d80153d4a6a00824e4 [file] [log] [blame]
package org.metaabm.gen.test;
/**
* Basic Model Java Implementation. Generated by metaabm system: Apr 13, 2008
* 3:03:46 PM EDT in project: org.metaabm.gen.repast.test (testing)
*/
public interface IBasicModel {
/**
* .
*/
public void testFake();
/**
* Gets the Some Flag property for Basic Model.
*
* @return
*/
public boolean isSomeFlag();
/**
* Sets the Some Flag property for Basic Model.
*
* @param _someFlag the new Some Flag value
*/
public void setSomeFlag(boolean _someFlag);
/**
* Gets the Generated Member Agent Count property for Basic Model.
*
* @return The number of generated member agents to create.
*/
public int getGeneratedMemberAgentCount();
/**
* Sets the Generated Member Agent Count property for Basic Model. The
* number of generated member agents to create.
*
* @param _generatedMemberAgentCount the new Generated Member Agent Count
* value
*/
public void setGeneratedMemberAgentCount(int _generatedMemberAgentCount);
/**
* Gets the Some Integer property for Basic Model.
*
* @return
*/
public int getSomeInteger();
/**
* Sets the Some Integer property for Basic Model.
*
* @param _someInteger the new Some Integer value
*/
public void setSomeInteger(int _someInteger);
/**
* Gets the Some Float property for Basic Model.
*
* @return
*/
public double getSomeFloat();
/**
* Sets the Some Float property for Basic Model.
*
* @param _someFloat the new Some Float value
*/
public void setSomeFloat(double _someFloat);
/**
* Gets the Operations Agent Count property for Basic Model.
*
* @return The number of operations agents to create.
*/
public int getOperationsAgentCount();
/**
* Sets the Operations Agent Count property for Basic Model. The number of
* operations agents to create.
*
* @param _operationsAgentCount the new Operations Agent Count value
*/
public void setOperationsAgentCount(int _operationsAgentCount);
/**
* Gets the State Agent Count property for Basic Model.
*
* @return The number of state agents to create.
*/
public int getStateAgentCount();
/**
* Sets the State Agent Count property for Basic Model. The number of state
* agents to create.
*
* @param _stateAgentCount the new State Agent Count value
*/
public void setStateAgentCount(int _stateAgentCount);
/**
* Gets the Methods Agent Count property for Basic Model.
*
* @return The number of methods agents to create.
*/
public int getMethodsAgentCount();
/**
* Sets the Methods Agent Count property for Basic Model. The number of
* methods agents to create.
*
* @param _methodsAgentCount the new Methods Agent Count value
*/
public void setMethodsAgentCount(int _methodsAgentCount);
}