(String text)
| 1364 | } |
| 1365 | |
| 1366 | protected Double getValue(String text) { |
| 1367 | Double d; |
| 1368 | try {d = Double.valueOf(text);} |
| 1369 | catch (NumberFormatException e){ |
| 1370 | d = null; |
| 1371 | } |
| 1372 | return d; |
| 1373 | } |
| 1374 | |
| 1375 | public double parseDouble(String s) { |
| 1376 | if (s==null) return Double.NaN; |
no test coverage detected