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