View Javadoc

1   /**
2    * Copyright 2004-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.hr.time.calendar;
17  
18  
19  public abstract class CalendarDay {
20  
21      private String dayNumberString;
22      private int dayNumberDelta;
23      private Boolean gray;
24      private String dateString;
25  	private Boolean dayEditable;
26  
27      public int getDayNumberDelta() {
28          return dayNumberDelta;
29      }
30  
31      public void setDayNumberDelta(int dayNumberDelta) {
32          this.dayNumberDelta = dayNumberDelta;
33      }
34  
35      public String getDayNumberString() {
36          return dayNumberString;
37      }
38  
39      public void setDayNumberString(String dayNumberString) {
40          this.dayNumberString = dayNumberString;
41      }
42  
43      public Boolean getGray() {
44          return gray;
45      }
46  
47      public void setGray(Boolean gray) {
48          this.gray = gray;
49      }
50  
51      public String getDateString() {
52          return dateString;
53      }
54  
55      public void setDateString(String dateString) {
56          this.dateString = dateString;
57      }
58  
59  	public Boolean getDayEditable() {
60  		return dayEditable;
61  	}
62  
63  	public void setDayEditable(Boolean dayEditable) {
64  		this.dayEditable = dayEditable;
65  	}
66  
67  }