jadex.bdi.examples.cleanerworld_classic.RequestPickUpWaste 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.
package jadex.bdi.examples.cleanerworld_classic;
import jadex.base.fipa.IComponentAction;
/**
* Java class for concept RequestPickUpWaste of cleaner_beans ontology.
*/
public class RequestPickUpWaste implements IComponentAction
{
//-------- attributes ----------
/** Attribute for slot waste. */
protected Waste waste;
//-------- constructors --------
/**
* Default Constructor.
* Create a new RequestPickUpWaste
.
*/
public RequestPickUpWaste()
{
}
//-------- accessor methods --------
/**
* Get the waste of this RequestPickUpWaste.
* @return waste
*/
public Waste getWaste()
{
return this.waste;
}
/**
* Set the waste of this RequestPickUpWaste.
* @param waste the value to be set
*/
public void setWaste(Waste waste)
{
this.waste = waste;
}
//-------- object methods --------
/**
* Get a string representation of this RequestPickUpWaste.
* @return The string representation.
*/
public String toString()
{
return "RequestPickUpWaste(" + ")";
}
}