Return the value of an real array option
(String label)
| 452 | * Return the value of an real array option |
| 453 | */ |
| 454 | public double[] getRealArrayOption(String label) { |
| 455 | RealArrayOption o = (RealArrayOption)options[findOption(label)]; |
| 456 | return o.values; |
| 457 | } |
| 458 | |
| 459 | /** |
| 460 | * Return the value of an string option |
nothing calls this directly
no test coverage detected