Uses of Class
gamedata.Game
-
Packages that use Game Package Description ca.cgjennings.apps.arkham ca.cgjennings.apps.arkham.deck ca.cgjennings.ui gamedata -
-
Uses of Game in ca.cgjennings.apps.arkham
Methods in ca.cgjennings.apps.arkham that return Game Modifier and Type Method Description Game
ContextBar.Context. getGame()
If the target is part of an editor associated with a particular game, returns the game. -
Uses of Game in ca.cgjennings.apps.arkham.deck
Methods in ca.cgjennings.apps.arkham.deck with parameters of type Game Modifier and Type Method Description static void
PaperSets. addTemporaryPaper(java.lang.String name, double widthInPoints, double heightInPoints, double marginInPoints, double gridInPoints, boolean isPhysicalPaperSize, Game game)
Temporarily adds a paper size that will last until the application exits.Constructors in ca.cgjennings.apps.arkham.deck with parameters of type Game Constructor Description PaperProperties(java.lang.String name, double width, double height, boolean orientation, double margin, double gridSeparation, boolean isPhysical, Game game)
Create a new paper property description. -
Uses of Game in ca.cgjennings.ui
Methods in ca.cgjennings.ui that return Game Modifier and Type Method Description Game
JExpansionList. getGame()
Game
JGameCombo. getItemAt(int index)
Game
JGameCombo. getSelectedItem()
Methods in ca.cgjennings.ui with parameters of type Game Modifier and Type Method Description void
JExpansionList. setGame(Game game)
void
JExpansionList. setGame(Game game, boolean includeGenerics)
void
JGameCombo. setSelectedItem(Game game)
Method parameters in ca.cgjennings.ui with type arguments of type Game Modifier and Type Method Description void
JGameCombo. setModel(javax.swing.ComboBoxModel<Game> aModel)
Constructors in ca.cgjennings.ui with parameters of type Game Constructor Description JExpansionList(Game game)
JGameFilterField(Game[] items)
Constructor parameters in ca.cgjennings.ui with type arguments of type Game Constructor Description JGameFilterField(javax.swing.ComboBoxModel<Game> aModel)
-
Uses of Game in gamedata
Methods in gamedata that return Game Modifier and Type Method Description static Game
Game. get(java.lang.String code)
Returns the game that was registered using the code, ornull
if no game has been registered with the code.static Game
Game. getAllGamesInstance()
Returns a special Game instance that represents "all games".Game
ClassMap.Entry. getGame()
Returns the game that this entry is associated with.Game
Expansion. getGame()
Returns the game that this expansion belongs to.static Game[]
Game. getGames(boolean includeAllGame)
Returns an array of all of the registered games.static Game
Game. register(java.lang.String code, java.lang.String gameName)
Register a new game with an associated icon.static Game
Game. register(java.lang.String code, java.lang.String key, java.awt.image.BufferedImage iconImage)
Deprecated.Prefer methods that take an icon or image resource.static Game
Game. register(java.lang.String code, java.lang.String key, java.lang.String icon)
Register a new game with an associated icon.static Game
Game. register(java.lang.String code, java.lang.String uiName, java.lang.String gameName, java.awt.image.BufferedImage iconImage, ExpansionSymbolTemplate template)
Deprecated.Prefer methods that take an icon or image resource.static Game
Game. register(java.lang.String code, java.lang.String uiName, java.lang.String gameName, java.lang.String iconResource, ExpansionSymbolTemplate template)
Register a new game with an associated icon.static Game
Game. register(java.lang.String code, java.lang.String uiName, java.lang.String gameName, javax.swing.Icon icon, ExpansionSymbolTemplate template)
Register a new game with an associated icon.Methods in gamedata with parameters of type Game Modifier and Type Method Description int
Game. compareTo(Game o)
Compares this game to another game.static java.lang.String
Expansion. generateEndUserIdentifier(Game game)
Generates a unique expansion identifier.static Expansion[]
Expansion. getExpansionsForGame(Game game, boolean includeGenerics)
Returns an array of the expansions that have been registered for a specific game.static Expansion
Expansion. register(Game forGame, java.lang.String code, java.lang.String uiName, java.lang.String gameName, java.awt.image.BufferedImage iconImage, java.awt.image.BufferedImage[] symbols)
Deprecated.static Expansion
Expansion. register(Game forGame, java.lang.String code, java.lang.String uiName, java.lang.String gameName, java.lang.String iconResource, java.awt.image.BufferedImage[] symbols)
static Expansion
Expansion. register(Game forGame, java.lang.String code, java.lang.String nameKey, java.lang.String iconResource, java.lang.String normalSymbol, java.lang.String inverseSymbol)
Deprecated.This method is provided to ease migration from SE 2.x.static Expansion
Expansion. register(Game forGame, java.lang.String code, java.lang.String uiName, java.lang.String gameName, javax.swing.Icon icon, java.awt.image.BufferedImage[] symbols)
-