Checks if an option is defined
(String option)
| 88 | |
| 89 | /** Checks if an option is defined */ |
| 90 | public static boolean |
| 91 | check(String option) { |
| 92 | if (table == null) |
| 93 | return false; |
| 94 | return (table.get(option.toLowerCase()) != null); |
| 95 | } |
| 96 | |
| 97 | /** Returns the value of an option */ |
| 98 | public static String |
no test coverage detected