Ejemplo n.º 1
0
  /** format with a date time */
  public static String format(String format, long time) {
    TimeFormat f = new TimeFormat(time);

    return f.parse(
        format, f.getDays(), f.getHours(), f.getMinutes(), f.getSeconds(), f.getMilliseconds());
  }
Ejemplo n.º 2
0
 /** update */
 private void getTime() {
   getDays(this);
   getHours(this);
   getMinutes(this);
   getSeconds(this);
 }