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

jadex.bdi.examples.cleanerworld_classic.RequestPickUpWaste 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.bridge.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(" + ")"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy