View Javadoc

1   /**
2    * Copyright 2004-2014 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.kpme.core.calendar.web;
17  
18  import org.kuali.kpme.core.api.calendar.web.CalendarDayContract;
19  
20  
21  public abstract class CalendarDay implements CalendarDayContract {
22  
23      private String dayNumberString;
24      private int dayNumberDelta;
25      private Boolean gray;
26      private String dateString;
27  	private Boolean dayEditable;
28  
29      public int getDayNumberDelta() {
30          return dayNumberDelta;
31      }
32  
33      public void setDayNumberDelta(int dayNumberDelta) {
34          this.dayNumberDelta = dayNumberDelta;
35      }
36  
37      public String getDayNumberString() {
38          return dayNumberString;
39      }
40  
41      public void setDayNumberString(String dayNumberString) {
42          this.dayNumberString = dayNumberString;
43      }
44  
45      public Boolean getGray() {
46          return gray;
47      }
48  
49      public void setGray(Boolean gray) {
50          this.gray = gray;
51      }
52  
53      public String getDateString() {
54          return dateString;
55      }
56  
57      public void setDateString(String dateString) {
58          this.dateString = dateString;
59      }
60  
61  	public Boolean getDayEditable() {
62  		return dayEditable;
63  	}
64  
65  	public void setDayEditable(Boolean dayEditable) {
66  		this.dayEditable = dayEditable;
67  	}
68  
69  }