Package jadex.bdi.examples.blackjack
Class RequestJoin
- java.lang.Object
-
- jadex.bdi.examples.blackjack.RequestJoin
-
- All Implemented Interfaces:
IComponentAction
public class RequestJoin extends java.lang.Object implements IComponentAction
Java class for concept RequestJoin of blackjack_beans ontology.
-
-
Constructor Summary
Constructors Constructor Description RequestJoin()
Default Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Player
getPlayer()
Get the player of this RequestJoin.int
getTimeout()
Get the timeout of this RequestJoin.void
setPlayer(Player player)
Set the player of this RequestJoin.void
setTimeout(int timeout)
Set the timeout of this RequestJoin.java.lang.String
toString()
Get a string representation of this RequestJoin.
-
-
-
Field Detail
-
timeout
protected int timeout
Attribute for slot timeout.
-
player
protected Player player
Attribute for slot player.
-
-
Method Detail
-
getTimeout
public int getTimeout()
Get the timeout of this RequestJoin.- Returns:
- timeout
-
setTimeout
public void setTimeout(int timeout)
Set the timeout of this RequestJoin.- Parameters:
timeout
- the value to be set
-
getPlayer
public Player getPlayer()
Get the player of this RequestJoin.- Returns:
- player
-
setPlayer
public void setPlayer(Player player)
Set the player of this RequestJoin.- Parameters:
player
- the value to be set
-
toString
public java.lang.String toString()
Get a string representation of this RequestJoin.- Overrides:
toString
in classjava.lang.Object
- Returns:
- The string representation.
-
-