View Javadoc
1   /**
2    * Copyright 2005-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.rice.krad.web.form;
17  
18  import java.util.Date;
19  import java.util.List;
20  
21  /**
22   * Form to test a paged view.
23   *
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public class TestPagedViewForm extends UifFormBase {
27  
28      private String textField1;
29      private String textField2;
30      private String textField3;
31  
32      private Date dateField1;
33      private Date dataField2;
34      private Date dataField3;
35  
36      private List<String> checkboxField;
37      private String radioField;
38      private List<String> multiSelectField;
39  
40      public String getTextField1() {
41          return textField1;
42      }
43  
44      public void setTextField1(String textField1) {
45          this.textField1 = textField1;
46      }
47  
48      public String getTextField2() {
49          return textField2;
50      }
51  
52      public void setTextField2(String textField2) {
53          this.textField2 = textField2;
54      }
55  
56      public String getTextField3() {
57          return textField3;
58      }
59  
60      public void setTextField3(String textField3) {
61          this.textField3 = textField3;
62      }
63  
64      public Date getDateField1() {
65          return dateField1;
66      }
67  
68      public void setDateField1(Date dateField1) {
69          this.dateField1 = dateField1;
70      }
71  
72      public Date getDataField2() {
73          return dataField2;
74      }
75  
76      public void setDataField2(Date dataField2) {
77          this.dataField2 = dataField2;
78      }
79  
80      public Date getDataField3() {
81          return dataField3;
82      }
83  
84      public void setDataField3(Date dataField3) {
85          this.dataField3 = dataField3;
86      }
87  
88      public List<String> getCheckboxField() {
89          return checkboxField;
90      }
91  
92      public void setCheckboxField(List<String> checkboxField) {
93          this.checkboxField = checkboxField;
94      }
95  
96      public String getRadioField() {
97          return radioField;
98      }
99  
100     public void setRadioField(String radioField) {
101         this.radioField = radioField;
102     }
103 
104     public List<String> getMultiSelectField() {
105         return multiSelectField;
106     }
107 
108     public void setMultiSelectField(List<String> multiSelectField) {
109         this.multiSelectField = multiSelectField;
110     }
111 
112 }