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

jadex.bdi.examples.blackjack.RequestJoin 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
/*
 * RequestJoin.java Generated by Protege plugin Beanynizer. Changes will be lost!
 */
package jadex.bdi.examples.blackjack;

import jadex.bridge.fipa.IComponentAction;


/**
 *  Java class for concept RequestJoin of blackjack_beans ontology.
 */
public class RequestJoin implements IComponentAction
{
	//-------- attributes ----------

	/** Attribute for slot timeout. */
	protected int timeout;

	/** Attribute for slot player. */
	protected Player player;

	//-------- constructors --------

	/**
	 *  Default Constructor. 
* Create a new RequestJoin. */ public RequestJoin() { } //-------- accessor methods -------- /** * Get the timeout of this RequestJoin. * @return timeout */ public int getTimeout() { return this.timeout; } /** * Set the timeout of this RequestJoin. * @param timeout the value to be set */ public void setTimeout(int timeout) { this.timeout = timeout; } /** * Get the player of this RequestJoin. * @return player */ public Player getPlayer() { return this.player; } /** * Set the player of this RequestJoin. * @param player the value to be set */ public void setPlayer(Player player) { this.player = player; } //-------- additional methods -------- /** * Get a string representation of this RequestJoin. * @return The string representation. */ public String toString() { return "RequestJoin(" + ")"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy