Checks whether an option exists in a given section. Options in the common section are assumed to not exist in particular sections, unless they're overwritten. @param section the section's name @param option the option's name @return true if the given section has the option
(String section, String option)
| 314 | * @return true if the given section has the option |
| 315 | */ |
| 316 | public boolean hasOption(String section, String option) { |
| 317 | return hasSection(section) && getSection(section).hasOption(option); |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * Checks whether a section with a particular name exists in this instance. |
nothing calls this directly
no test coverage detected