All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.bdi.examples.hunterprey_classic.Obstacle Maven / Gradle / Ivy

Go to download

The Jadex BDI applications package contain several example applications, benchmarks and testcases using BDI agents.

The newest version!
package jadex.bdi.examples.hunterprey_classic;


/**
 *  Editable Java class for concept Obstacle of hunterprey ontology.
 */
public class Obstacle extends WorldObject
{
	//-------- constructors --------

	/**
	 *  Create a new Obstacle.
	 */
	public Obstacle()
	{
		// Empty constructor required for JavaBeans (do not remove).
	}

	/**
	 *  Create a new Obstacle.
	 */
	public Obstacle(Location location)
	{
		// Constructor using required slots (change if desired).
		setLocation(location);
	}

	//-------- object methods --------

	/**
	 *  Get a string representation of this Obstacle.
	 *  @return The string representation.
	 */
	public String toString()
	{
		return "Obstacle(" + "location=" + getLocation() + ")";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy