@return the start time for the query @throws IllegalStateException if the start time hasn't been set yet
()
| 281 | * @throws IllegalStateException if the start time hasn't been set yet |
| 282 | */ |
| 283 | @Override |
| 284 | public long getStartTime() { |
| 285 | if (start_time == UNSET) { |
| 286 | throw new IllegalStateException("setStartTime was never called!"); |
| 287 | } |
| 288 | return start_time; |
| 289 | } |
| 290 | |
| 291 | /** |
| 292 | * Sets the end time for the query. If this isn't set, the system time will be |
no outgoing calls