Return the value of an integer option
(String label)
| 428 | * Return the value of an integer option |
| 429 | */ |
| 430 | public int getIntegerOption(String label) { |
| 431 | IntegerOption o = (IntegerOption)options[findOption(label)]; |
| 432 | return o.value; |
| 433 | } |
| 434 | |
| 435 | /** |
| 436 | * Return the value of an integer array option |