import oracle.jbo.domain.Date;
public Date getCurrentDateTime() {
return new Date(new Timestamp(System.currentTimeMillis()));
}
public void Method(){
eventstartDate = (oracle.jbo.domain.Timestamp)this.bndevtfromdate.getValue();
eventendDate = (oracle.jbo.domain.Timestamp)this.bndevttodate.getValue();
if (eventstartDate.compareTo(getCurrentDateTime()) < 0) {
showmessage("Start Date cannot be less than Today's Date", "I");
}
}
我正在制作一个活动通告,其中没有人可以在今天的日期之前输入参加活动的日期。事件开始日期和事件结束日期是两个用作时间戳类变量的变量。