All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.bdi.examples.cleanerworld_classic.RequestCompleteVision Maven / Gradle / Ivy

Go to download

The Jadex BDI applications package contain several example applications, benchmarks and testcases using BDI agents.

There is a newer version: 2.4
Show newest version
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(" + ")"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy