1 2 18 19 22 23 24 package org.quartz; 25 26 43 public interface Calendar extends java.io.Serializable { 44 45 52 53 int MONTH = 0; 54 55 62 63 68 void setBaseCalendar(Calendar baseCalendar); 69 70 75 Calendar getBaseCalendar(); 76 77 83 boolean isTimeIncluded(long timeStamp); 84 85 91 long getNextIncludedTime(long timeStamp); 92 93 101 String getDescription(); 102 103 110 void setDescription(String description); 111 } 112 | Popular Tags |