MCPcopy Create free account
hub / github.com/PCGen/pcgen / setGMGenOption

Method setGMGenOption

code/src/java/pcgen/core/SettingsHandler.java:220–223  ·  view source on GitHub ↗

Puts all properties into the Properties object, (options). This is called by writeOptionsProperties, which then saves the options into a file. @param optionName @param optionValue

(final String optionName, final boolean optionValue)

Source from the content-addressed store, hash-verified

218 * @param optionValue
219 */
220 public static void setGMGenOption(final String optionName, final boolean optionValue)
221 {
222 setGMGenOption(optionName, optionValue ? "true" : "false"); //$NON-NLS-1$ //$NON-NLS-2$
223 }
224
225 public static void setGMGenOption(final String optionName, final int optionValue)
226 {

Callers

nothing calls this directly

Calls 3

getOptionsMethod · 0.95
setPropertyMethod · 0.80
valueOfMethod · 0.45

Tested by

no test coverage detected