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

jadex.bdi.examples.hunterprey_classic.Food 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 Food of hunterprey ontology.
 */
public class Food extends WorldObject
{
	//-------- constructors --------

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy