jadex.bdi.examples.cleanerworld_classic.RequestCompleteVision 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 RequestCompleteVision of cleaner_beans ontology.
*/
public class RequestCompleteVision implements IComponentAction
{
//-------- attributes ----------
/** Attribute for slot vision. */
protected Vision vision;
//-------- constructors --------
/**
* Default Constructor.
* Create a new RequestCompleteVision
.
*/
public RequestCompleteVision()
{
}
//-------- accessor methods --------
/**
* Get the vision of this RequestCompleteVision.
* @return vision
*/
public Vision getVision()
{
return this.vision;
}
/**
* Set the vision of this RequestCompleteVision.
* @param vision the value to be set
*/
public void setVision(Vision vision)
{
this.vision = vision;
}
//-------- object methods --------
/**
* Get a string representation of this RequestCompleteVision.
* @return The string representation.
*/
public String toString()
{
return "RequestCompleteVision(" + ")";
}
}