001 /** 002 * Copyright 2004-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.hr.time.calendar; 017 018 019 public abstract class CalendarDay { 020 021 private String dayNumberString; 022 private int dayNumberDelta; 023 private Boolean gray; 024 private String dateString; 025 private Boolean dayEditable; 026 027 public int getDayNumberDelta() { 028 return dayNumberDelta; 029 } 030 031 public void setDayNumberDelta(int dayNumberDelta) { 032 this.dayNumberDelta = dayNumberDelta; 033 } 034 035 public String getDayNumberString() { 036 return dayNumberString; 037 } 038 039 public void setDayNumberString(String dayNumberString) { 040 this.dayNumberString = dayNumberString; 041 } 042 043 public Boolean getGray() { 044 return gray; 045 } 046 047 public void setGray(Boolean gray) { 048 this.gray = gray; 049 } 050 051 public String getDateString() { 052 return dateString; 053 } 054 055 public void setDateString(String dateString) { 056 this.dateString = dateString; 057 } 058 059 public Boolean getDayEditable() { 060 return dayEditable; 061 } 062 063 public void setDayEditable(Boolean dayEditable) { 064 this.dayEditable = dayEditable; 065 } 066 067 }