|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AccountType | |
---|---|
com.asdf.client | Client component of the software. |
com.asdf.common | Common classes shared by client and server. |
com.asdf.gui.lobby | GUI components used to display game lobby. |
com.asdf.plugins.hello | |
com.asdf.plugins.pokergames | In-built pokergame implementation. |
com.asdf.server | Server component of the software. |
Uses of AccountType in com.asdf.client |
---|
Methods in com.asdf.client that return AccountType | |
---|---|
AccountType |
User.getType()
Returns the type of this users account. |
Methods in com.asdf.client with parameters of type AccountType | |
---|---|
void |
User.setLogged(java.lang.String name,
double balance,
AccountType type)
Sets user logged in. |
void |
LobbyModel.setLoggedIn(java.lang.String name,
double balance,
AccountType type)
Sets user logged in. |
Uses of AccountType in com.asdf.common |
---|
Methods in com.asdf.common that return AccountType | |
---|---|
AccountType |
Game.getUserType(long sessionID)
Get type of the user. |
static AccountType |
AccountType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AccountType[] |
AccountType.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in com.asdf.common with parameters of type AccountType | |
---|---|
abstract void |
GameController.init(GameResponse joinResponse,
java.lang.String accountName,
AccountType accountType)
Since GameControllers are loaded dynamically in lobby it is not possible to use a constructor with parameters, which GameController implementations might need. |
Uses of AccountType in com.asdf.gui.lobby |
---|
Methods in com.asdf.gui.lobby with parameters of type AccountType | |
---|---|
void |
LobbyTopPanel.setLoggedIn(java.lang.String name,
double balance,
AccountType accountType)
Sets panel to logged in state. |
Uses of AccountType in com.asdf.plugins.hello |
---|
Methods in com.asdf.plugins.hello with parameters of type AccountType | |
---|---|
void |
HelloGame.init(GameResponse arg0,
java.lang.String arg1,
AccountType arg2)
When the client is joining the game for the first time, if he wants to something special about it, this is the place. |
Uses of AccountType in com.asdf.plugins.pokergames |
---|
Methods in com.asdf.plugins.pokergames with parameters of type AccountType | |
---|---|
void |
PokerGameController.init(GameResponse response,
java.lang.String accountName,
AccountType accountType)
initialized the game controller for use. |
Uses of AccountType in com.asdf.server |
---|
Methods in com.asdf.server that return AccountType | |
---|---|
AccountType |
Account.getType()
Return the type of the user |
Constructors in com.asdf.server with parameters of type AccountType | |
---|---|
Account(java.lang.String name,
AccountType type)
Constructor. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |