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