Lines Matching refs:Date

30 import java.util.Date;
72 * overloaded {@link #addNotification(String, String, Object, Date, long, long, boolean)} method.
287 Date date;
289 Date currentDate = new Date();
304 date = (Date)obj[TIMER_DATE_INDEX];
416 * @see #addNotification(String, String, Object, Date, long, long)
420 // Date date, long period, long nbOccurences)
424 Date date, long period, long nbOccurences, boolean fixedRate)
441 Date currentDate = new Date();
481 Date d = new Date(date.getTime());
547 * {@link #addNotification(String, String, Object, Date, long, long, boolean)} instead.
561 * @see #addNotification(String, String, Object, Date, long, long, boolean)
565 // Date date, long period)
569 Date date, long period, long nbOccurences)
582 * execution scheme, use {@link #addNotification(String, String, Object, Date, long, long,
603 // Date date, long period)
607 Date date, long period)
634 // public synchronized Integer addNotification(String type, String message, Serializable userData, Date date)
638 public synchronized Integer addNotification(String type, String message, Object userData, Date date)
881 public Date getDate(Integer id) {
885 Date date = (Date)obj[TIMER_DATE_INDEX];
886 return (new Date(date.getTime()));
1001 private synchronized void sendPastNotifications(Date currentDate, boolean currentFlag) {
1005 Date date;
1016 date = (Date)obj[TIMER_DATE_INDEX];
1076 Date date = (Date)obj[TIMER_DATE_INDEX];
1181 Date timerDate = null;
1190 timerDate = (Date)obj[TIMER_DATE_INDEX];
1211 void sendNotification(Date timeStamp, TimerNotification notification) {
1254 Date next = null;
1267 public TimerAlarmClock(Timer listener, Date next) {