Sets an option to "true"
(String option)
| 64 | |
| 65 | /** Sets an option to "true" */ |
| 66 | public static void |
| 67 | set(String option) { |
| 68 | if (table == null) |
| 69 | table = new HashMap(); |
| 70 | table.put(option.toLowerCase(), "true"); |
| 71 | } |
| 72 | |
| 73 | /** Sets an option to the the supplied value */ |
| 74 | public static void |
no test coverage detected