01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
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.core.web.ui;
17:
18: import java.util.ArrayList;
19: import java.util.List;
20:
21: /**
22: * This class represents a row of fields on the ui.
23: */
24: public class Row implements java.io.Serializable {
25:
26: private static final long serialVersionUID = 5920833652172097098L;
27: private List<Field> fields;
28: private boolean hidden;
29:
30: public Row() {
31: fields = new ArrayList<Field>();
32: hidden = false;
33: }
34:
35: public Row(List<Field> fields) {
36: this .fields = fields;
37: hidden = false;
38: }
39:
40: public Row(Field field) {
41: this .fields = new ArrayList<Field>();
42: fields.add(field);
43: hidden = false;
44: }
45:
46: /**
47: * @return the fields contained in the row
48: */
49: public List<Field> getFields() {
50: return fields;
51: }
52:
53: /**
54: * @param fields the fields to be displayed in the row.
55: */
56: public void setFields(List<Field> fields) {
57: this .fields = fields;
58: }
59:
60: /**
61: * @return the hidden
62: */
63: public boolean isHidden() {
64: return hidden;
65: }
66:
67: /**
68: * @param hidden the hidden to set
69: */
70: public void setHidden(boolean hidden) {
71: this.hidden = hidden;
72: }
73:
74: }
|