1 22 package com.scalagent.scheduler.event; 23 24 29 public class BasedPeriodicEvent extends PeriodicEvent 30 implements BasedDiaryEvent { 31 35 public BasedPeriodicEvent() {} 36 37 43 public BasedPeriodicEvent(String timeZoneId, DiaryPeriod period) { 44 super(timeZoneId, -1, period); 45 } 46 47 52 public BasedPeriodicEvent(DiaryPeriod period) { 53 this(null, period); 54 } 55 56 63 public void setBaseDate(long baseDate) { 64 setRefDate(baseDate); 65 } 66 } 67 | Popular Tags |