
jadex.bdi.examples.cleanerworld_classic.RequestDropWaste 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!
/*
* RequestDropWaste.java Generated by Protege plugin Beanynizer. Changes will be lost!
*/
package jadex.bdi.examples.cleanerworld_classic;
import jadex.bridge.fipa.IComponentAction;
/**
* Java class for concept RequestDropWaste of cleaner_beans ontology.
*/
public class RequestDropWaste implements IComponentAction
{
//-------- attributes ----------
/** Attribute for slot waste. */
protected Waste waste;
/** Attribute for slot wastebinname. */
protected String wastebinname;
//-------- constructors --------
/**
* Default Constructor.
* Create a new RequestDropWaste
.
*/
public RequestDropWaste()
{
}
//-------- accessor methods --------
/**
* Get the waste of this RequestDropWaste.
* @return waste
*/
public Waste getWaste()
{
return this.waste;
}
/**
* Set the waste of this RequestDropWaste.
* @param waste the value to be set
*/
public void setWaste(Waste waste)
{
this.waste = waste;
}
/**
* Get the wastebinname of this RequestDropWaste.
* @return wastebinname
*/
public String getWastebinname()
{
return this.wastebinname;
}
/**
* Set the wastebinname of this RequestDropWaste.
* @param wastebinname the value to be set
*/
public void setWastebinname(String wastebinname)
{
this.wastebinname = wastebinname;
}
//-------- object methods --------
/**
* Get a string representation of this RequestDropWaste.
* @return The string representation.
*/
public String toString()
{
return "RequestDropWaste(" + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy