Lines Matching refs:time
38 long time = -1; // modification time (in DOS time)
82 time = e.time;
106 * Sets the modification time of the entry.
107 * @param time the entry modification time in number of milliseconds
111 public void setTime(long time) {
112 this.time = javaToDosTime(time);
116 * Returns the modification time of the entry, or -1 if not specified.
117 * @return the modification time of the entry, or -1 if not specified
121 return time != -1 ? dosToJavaTime(time) : -1;
281 * Converts DOS time to Java time (number of milliseconds since epoch).
294 * Converts Java time to DOS time.
296 private static long javaToDosTime(long time) {
297 Date d = new Date(time);