Uses of Class
gamedata.Expansion
-
Packages that use Expansion Package Description ca.cgjennings.apps.arkham.sheet ca.cgjennings.ui gamedata -
-
Uses of Expansion in ca.cgjennings.apps.arkham.sheet
Methods in ca.cgjennings.apps.arkham.sheet that return Expansion Modifier and Type Method Description static Expansion[]
Sheet. parseExpansionList(java.lang.String settingValue)
Given a list of expansion codes separated by commas (the format used to set expansion icons in a game component's private settings), return an array of the expansions represented by the codes.Methods in ca.cgjennings.apps.arkham.sheet with parameters of type Expansion Modifier and Type Method Description static java.awt.image.BufferedImage
Sheet. getExpansionSymbol(Expansion expansion, java.lang.String booleanOrIntegerVariant, int targetWidth)
Returns the symbol to be painted on cards for an expansion. -
Uses of Expansion in ca.cgjennings.ui
Methods in ca.cgjennings.ui that return Expansion Modifier and Type Method Description Expansion[]
JExpansionList. getSelectedExpansions()
Methods in ca.cgjennings.ui with parameters of type Expansion Modifier and Type Method Description void
JExpansionList. setSelectedExpansions(Expansion[] selection)
-
Uses of Expansion in gamedata
Fields in gamedata with type parameters of type Expansion Modifier and Type Field Description static RegistrationEventSource<Expansion>
Expansion. Listeners
Listeners that will receive notification of new registrations.static RegistrationEventSource<Expansion>
Silhouette. Listeners
Listeners that are informed of registration changes.Methods in gamedata that return Expansion Modifier and Type Method Description static Expansion
Expansion. get(java.lang.String id)
Return the expansion with the requested identifier, ornull
if there is no such expansion.static Expansion
Expansion. getBaseGameExpansion()
Returns the base game "expansion".static Expansion[]
Expansion. getExpansions()
Returns an array of all registered expansions.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)
Methods in gamedata that return types with arguments of type Expansion Modifier and Type Method Description static java.util.Set<Expansion>
Expansion. getComponentExpansionSymbols(GameComponent gc)
Returns a new, modifiable set of the expansions set on a game component by reading the value of the component'sEXPANSION_SETTING_KEY
private setting.Methods in gamedata with parameters of type Expansion Modifier and Type Method Description int
Expansion. compareTo(Expansion o)
Sorts groups of expansions by game and then by expansion name.Method parameters in gamedata with type arguments of type Expansion Modifier and Type Method Description static void
Expansion. setComponentExpansionSymbols(GameComponent gc, java.util.Set<Expansion> exps)
Sets the expansion symbols associated with a game component by modifying the component'sEXPANSION_SETTING_KEY
private setting.
-