getTotalHours method

double getTotalHours()

Gets the number of hours including fractional hours.

@return the number of hours.

Implementation

double getTotalHours() {
  return ((this.time / 1000.0) / 60.0) / 60.0;
}