| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DateRange | 
 | 
 | 1.0;1 | 
| 1 |  /* | |
| 2 |   * Copyright 2011 The Kuali Foundation Licensed under the Educational | |
| 3 |   * Community License, Version 2.0 (the "License"); you may not use | |
| 4 |   * this file except in compliance with the License. You may obtain a | |
| 5 |   * copy of the License at http://www.osedu.org/licenses/ECL-2.0 Unless | |
| 6 |   * required by applicable law or agreed to in writing, software | |
| 7 |   * distributed under the License is distributed on an "AS IS" BASIS, | |
| 8 |   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | |
| 9 |   * implied. See the License for the specific language governing | |
| 10 |   * permissions and limitations under the License. | |
| 11 |   */ | |
| 12 | ||
| 13 |  package org.kuali.student.common.infc; | |
| 14 | ||
| 15 |  import java.util.Date; | |
| 16 | ||
| 17 | ||
| 18 |  /** | |
| 19 |   * A range of two dates. | |
| 20 |   * | |
| 21 |   * @author tom | |
| 22 |   */ | |
| 23 | public interface DateRange { | |
| 24 | ||
| 25 |      /** | |
| 26 |       * Name: Start | |
| 27 |       * Get sthe start date of the range. | |
| 28 |       */ | |
| 29 |      public Date getStart(); | |
| 30 | ||
| 31 |      /** | |
| 32 |       * Name: End | |
| 33 |       * Gets the end date of the range. | |
| 34 |       */ | |
| 35 |      public Date getEnd(); | |
| 36 | } |