jadex.quickstart.cleanerworld.environment.IWaste Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-quickstart Show documentation
Show all versions of jadex-applications-quickstart Show documentation
The Jadex quickstart package contains the ready to use "Cleanerworld" environment as a testbed for experimenting with autonomous agents and intelligent behavior.
package jadex.quickstart.cleanerworld.environment;
/**
* (Knowledge about) a piece of waste.
*/
public interface IWaste extends ILocationObject
{
/**
* Get the id (or name) of this object.
* @return The id.
*/
public String getId();
/**
* Get the location of this object.
* @return The location of the object.
*/
public ILocation getLocation();
}