
jadex.bdi.examples.cleanerworld_classic.RequestVision 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.cleanerworld_classic;
import jadex.bridge.fipa.IComponentAction;
/**
* Java class for concept RequestVision of cleaner_beans ontology.
*/
public class RequestVision implements IComponentAction
{
//-------- attributes ----------
/** Attribute for slot vision. */
protected Vision vision;
/** Attribute for slot cleaner. */
protected Cleaner cleaner;
//-------- constructors --------
/**
* Default Constructor.
* Create a new RequestVision
.
*/
public RequestVision()
{ //
}
//-------- accessor methods --------
/**
* Get the vision of this RequestVision.
* @return vision
*/
public Vision getVision()
{
return this.vision;
}
/**
* Set the vision of this RequestVision.
* @param vision the value to be set
*/
public void setVision(Vision vision)
{
this.vision = vision;
}
/**
* Get the cleaner of this RequestVision.
* @return cleaner
*/
public Cleaner getCleaner()
{
return this.cleaner;
}
/**
* Set the cleaner of this RequestVision.
* @param cleaner the value to be set
*/
public void setCleaner(Cleaner cleaner)
{
this.cleaner = cleaner;
}
//-------- object methods --------
/**
* Get a string representation of this RequestVision.
* @return The string representation.
*/
public String toString()
{
return "RequestVision(" + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy