| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| EditorForm |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright 2007 The Kuali Foundation | |
| 3 | * | |
| 4 | * Licensed under the Educational Community License, Version 1.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/ecl1.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.rice.krms.impl.ui; | |
| 17 | ||
| 18 | import org.kuali.rice.kns.web.spring.form.UifFormBase; | |
| 19 | import org.kuali.rice.krms.impl.repository.AgendaBo; | |
| 20 | import org.kuali.rice.krms.impl.repository.AgendaItemBo; | |
| 21 | import org.kuali.rice.krms.impl.repository.ContextBo; | |
| 22 | ||
| 23 | /** | |
| 24 | * Form for Test UI Page | |
| 25 | * | |
| 26 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
| 27 | */ | |
| 28 | 0 | public class EditorForm extends UifFormBase { |
| 29 | private static final long serialVersionUID = -2054046347823986319L; | |
| 30 | ||
| 31 | private ContextBo context; | |
| 32 | private AgendaBo agenda; | |
| 33 | private AgendaItemBo agendaItemAddLine; | |
| 34 | ||
| 35 | /** | |
| 36 | * @return the agendaItemAddLine | |
| 37 | */ | |
| 38 | public AgendaItemBo getAgendaItemAddLine() { | |
| 39 | 0 | return this.agendaItemAddLine; |
| 40 | } | |
| 41 | /** | |
| 42 | * @param agendaItemAddLine the agendaItemAddLine to set | |
| 43 | */ | |
| 44 | public void setAgendaItemAddLine(AgendaItemBo agendaItemAddLine) { | |
| 45 | 0 | this.agendaItemAddLine = agendaItemAddLine; |
| 46 | 0 | } |
| 47 | /** | |
| 48 | * @return the context | |
| 49 | */ | |
| 50 | public ContextBo getContext() { | |
| 51 | 0 | return this.context; |
| 52 | } | |
| 53 | /** | |
| 54 | * @param context the context to set | |
| 55 | */ | |
| 56 | public void setContext(ContextBo context) { | |
| 57 | 0 | this.context = context; |
| 58 | 0 | } |
| 59 | /** | |
| 60 | * @return the agenda | |
| 61 | */ | |
| 62 | public AgendaBo getAgenda() { | |
| 63 | 0 | return this.agenda; |
| 64 | } | |
| 65 | /** | |
| 66 | * @param agenda the agenda to set | |
| 67 | */ | |
| 68 | public void setAgenda(AgendaBo agenda) { | |
| 69 | 0 | this.agenda = agenda; |
| 70 | 0 | } |
| 71 | ||
| 72 | } |