Beispiel #1
0
 /**
  * get seconds from a time format
  *
  * @param t
  */
 public void getSeconds(TimeFormat t) {
   if (t.remainder >= ONE_SECOND && t.remainder < ONE_MINUTE) {
     t.seconds = (t.remainder / ONE_SECOND);
     t.milliseconds = t.remainder -= (t.seconds * ONE_SECOND);
   } else {
     t.seconds = 0;
     t.milliseconds = t.remainder;
   }
 }