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)
| 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 | { |
nothing calls this directly
no test coverage detected