
jadex.bdi.examples.hunterprey_classic.Obstacle 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 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