
jadex.bdi.examples.hunterprey_classic.Food Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-bdi Show documentation
Show all versions of jadex-applications-bdi Show documentation
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