Searched refs:start_ (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DScheduledTimerDescriptor.java116 start_ = (s == null) ? null : new Date(s.getTime());
120 return (start_ == null) ? null : new Date(start_.getTime());
166 + ";start=" + start_
186 private Date start_ = null; field in class:ScheduledTimerDescriptor
/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/
H A DScheduleExpression.java442 start_ = (s == null) ? null : new Date(s.getTime());
453 return (start_ == null) ? null : new Date(start_.getTime());
483 + ";start=" + start_
499 private Date start_ = null; field in class:ScheduleExpression
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DTimerSchedule.java81 private Date start_ = null; field in class:TimerSchedule
222 start_ = (sp[8].equals("null")? null : new Date(Long.parseLong(sp[8])));
319 start_ = (s == null) ? null : new Date(s.getTime());
326 return (start_ == null) ? null : new Date(start_.getTime());
367 .append(((start_ == null) ? null : start_.getTime()))
389 start(start_).
483 if (start_ != null && next.getTimeInMillis() < start_
[all...]

Completed in 57 milliseconds