()
| 468 | * @see #getSeconds() |
| 469 | */ |
| 470 | public int getFraction() { |
| 471 | |
| 472 | int n = this.nanos; |
| 473 | |
| 474 | if (n < 0) { |
| 475 | n += MRD; |
| 476 | } |
| 477 | |
| 478 | return n; |
| 479 | |
| 480 | } |
| 481 | |
| 482 | /** |
| 483 | * <p>Yields the related time scale. </p> |
no outgoing calls
no test coverage detected