Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
HolidayCalendarCopyForm |
|
| 0.0;0 |
1 | /** | |
2 | * Copyright 2012 The Kuali Foundation Licensed under the | |
3 | * Educational Community License, Version 2.0 (the "License"); you may | |
4 | * not use this file except in compliance with the License. You may | |
5 | * obtain a copy of the License at | |
6 | * | |
7 | * http://www.osedu.org/licenses/ECL-2.0 | |
8 | * | |
9 | * Unless required by applicable law or agreed to in writing, | |
10 | * software distributed under the License is distributed on an "AS IS" | |
11 | * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | |
12 | * or implied. See the License for the specific language governing | |
13 | * permissions and limitations under the License. | |
14 | * | |
15 | * Created by bobhurt on 2/15/12 | |
16 | */ | |
17 | package org.kuali.student.enrollment.class2.acal.form; | |
18 | ||
19 | import org.kuali.rice.krad.web.form.UifFormBase; | |
20 | import org.kuali.student.enrollment.acal.dto.HolidayCalendarInfo; | |
21 | ||
22 | import java.util.ArrayList; | |
23 | import java.util.List; | |
24 | ||
25 | /** | |
26 | * This class supports the "Create New Holiday Calendar" page | |
27 | * | |
28 | * @author Kuali Student Team | |
29 | */ | |
30 | 0 | public class HolidayCalendarCopyForm extends UifFormBase { |
31 | ||
32 | private static final long serialVersionUID = -4233892841016609592L; | |
33 | /* | |
34 | private HolidayCalendarInfo currentHolidayCalendar; | |
35 | private HolidayCalendarInfo newHolidayCalendar; | |
36 | ||
37 | public HolidayCalendarCopyForm() { | |
38 | super(); | |
39 | currentHolidayCalendar = new HolidayCalendarInfo(); | |
40 | newHolidayCalendar = new HolidayCalendarInfo(); | |
41 | } | |
42 | ||
43 | public HolidayCalendarInfo getCurrentHolidayCalendar() { | |
44 | return currentHolidayCalendar; | |
45 | } | |
46 | public void setCurrentHolidayCalendar(HolidayCalendarInfo currentHolidayCalendar) { | |
47 | this.currentHolidayCalendar = currentHolidayCalendar; | |
48 | } | |
49 | ||
50 | public HolidayCalendarInfo getNewHolidayCalendar() { | |
51 | return newHolidayCalendar; | |
52 | } | |
53 | public void setNewHolidayCalendar(HolidayCalendarInfo newHolidayCalendar) { | |
54 | this.newHolidayCalendar = newHolidayCalendar; | |
55 | } | |
56 | */ | |
57 | } |