Uses of Class
resources.Settings
-
-
Uses of Settings in ca.cgjennings.apps.arkham.component
Fields in ca.cgjennings.apps.arkham.component declared as Settings Modifier and Type Field Description protected Settings
AbstractGameComponent. privateSettings
Methods in ca.cgjennings.apps.arkham.component that return Settings Modifier and Type Method Description Settings
AbstractGameComponent. getSettings()
Settings
GameComponent. getSettings()
Returns aSettings
instance that will return this component's private settings.Methods in ca.cgjennings.apps.arkham.component with parameters of type Settings Modifier and Type Method Description static java.awt.image.BufferedImage
AbstractPortrait. createStencil(Settings s, java.lang.String templateKey, java.lang.String portraitRegionKey)
Creates an image suitable for use withAbstractPortrait.getClipStencil()
. -
Uses of Settings in ca.cgjennings.apps.arkham.deck
Methods in ca.cgjennings.apps.arkham.deck that return Settings Modifier and Type Method Description Settings
Deck. getSettings()
-
Uses of Settings in ca.cgjennings.apps.arkham.dialog.prefs
Methods in ca.cgjennings.apps.arkham.dialog.prefs that return Settings Modifier and Type Method Description Settings
FillInPreferenceCategory. getSettings()
-
Uses of Settings in ca.cgjennings.apps.arkham.plugins
Methods in ca.cgjennings.apps.arkham.plugins that return Settings Modifier and Type Method Description Settings
ScriptMonkey. getSettingProvider()
Returns theSettings
object that is used to look up settings with $setting_name syntax.Settings
PluginContext. getSettings()
Returns aSettings
instance that can be used to read and write user settings using this plug-in's namespace.Methods in ca.cgjennings.apps.arkham.plugins with parameters of type Settings Modifier and Type Method Description void
ScriptMonkey. setSettingProvider(Settings settings)
Sets theSettings
object that is used to look up settings with $setting_name syntax. -
Uses of Settings in ca.cgjennings.apps.arkham.plugins.engine
Methods in ca.cgjennings.apps.arkham.plugins.engine that return Settings Modifier and Type Method Description Settings
SettingBindings. getSettings()
Returns the settings used to look up $ variables.Settings
SettingBindings.LiveSetting. getSettings()
Returns theSettings
instance that the live setting was created from.Methods in ca.cgjennings.apps.arkham.plugins.engine with parameters of type Settings Modifier and Type Method Description void
SettingBindings. setSettings(Settings settings)
Sets the settings used to look up $ and $$ variables.Constructors in ca.cgjennings.apps.arkham.plugins.engine with parameters of type Settings Constructor Description SettingBindings(javax.script.Bindings parent, Settings settings)
-
Uses of Settings in ca.cgjennings.apps.arkham.project
Methods in ca.cgjennings.apps.arkham.project that return Settings Modifier and Type Method Description Settings
Task. getSettings()
-
Uses of Settings in gamedata
Methods in gamedata that return Settings Modifier and Type Method Description Settings
Game. getMasterSettings()
Deprecated.Replaced byGame.getSettings()
.Settings
Game. getSettings()
Returns the settings instance for this game. -
Uses of Settings in resources
Methods in resources that return Settings Modifier and Type Method Description Settings
Settings. createNamespace(java.lang.String namespace)
Returns a view of these settings within a namespace.static Settings
Settings. forProperties(java.lang.String name, java.util.Properties toWrap)
Returns a view of an existingjava.util.Properties
object as aSettings
object.Settings
Settings. getParent()
Returns the parent scope of thisSettings
, ornull
if this is the shared scope.static Settings
Settings. getShared()
Returns theSettings
instance that represents the shared global scope.static Settings
Settings. getUser()
Returns theSettings
instance that represents user settings.Methods in resources with parameters of type Settings Modifier and Type Method Description void
Settings. addSettingsFrom(Settings sourceSettings)
Adds entries from anotherSettings
instance to this instance.Constructors in resources with parameters of type Settings Constructor Description Settings(Settings parent)
Create a new settings scope within the scope ofparent
.
-