Home | History | Annotate | Download | only in keymaster

Lines Matching refs:date

20 import java.util.Date;
26 public final Date date;
28 public KeymasterDateArgument(int tag, Date date) {
34 throw new IllegalArgumentException("Bad date tag " + tag);
36 this.date = date;
41 date = new Date(in.readLong());
46 out.writeLong(date.getTime());