blob: ac6b6cd9748ad7a62d1107490e309760b2b24c54 [file] [log] [blame]
package org.metaabm.gen.test;
/**
* Network Agent Java Implementation. Generated by metaabm system: Apr 13, 2008
* 3:03:48 PM EDT in project: org.metaabm.gen.repast.test (testing)
*/
public interface INetworkAgent {
/**
* .
*/
public void simpleNetworkMoveTowardAgent();
/**
* .
*/
public void disconnect();
/**
* .
*/
public void replace();
/**
* Gets the Vision property for Network Agent.
*
* @return
*/
public int getVision();
/**
* Sets the Vision property for Network Agent.
*
* @param _vision the new Vision value
*/
public void setVision(int _vision);
/**
* Gets the Moving Toward Goal property for Network Agent.
*
* @return
*/
public boolean isMovingTowardGoal();
/**
* Sets the Moving Toward Goal property for Network Agent.
*
* @param _movingTowardGoal the new Moving Toward Goal value
*/
public void setMovingTowardGoal(boolean _movingTowardGoal);
}