Lines Matching defs:formatter
63 private SimpleDateFormat formatter; // Formats the date displayed
74 formatter = new SimpleDateFormat("EEE MMM dd hh:mm:ss yyyy",
77 lastdate = formatter.format(currentDate);
114 formatter.applyPattern("s");
116 s = Integer.parseInt(formatter.format(currentDate));
120 formatter.applyPattern("m");
122 m = Integer.parseInt(formatter.format(currentDate));
126 formatter.applyPattern("h");
128 h = Integer.parseInt(formatter.format(currentDate));
146 formatter.applyPattern("EEE MMM dd HH:mm:ss yyyy");
147 today = formatter.format(currentDate);