View Javadoc

1   /**
2    * Copyright 2010 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  
16  package org.kuali.student.r1.common.assembly.data;
17  
18  import java.io.Serializable;
19  
20  @Deprecated
21  public class LookupResultMetadata implements Serializable {
22  
23  	private static final long serialVersionUID = 1L;
24  
25  	private String key;
26  	private String name;
27  	private String desc;
28  	private Data.DataType dataType;
29  	private boolean hidden;
30      private String columnWidth;
31  
32  	public String getName() {
33  		return name;
34  	}
35  
36  	public void setName(String name) {
37  		this.name = name;
38  	}
39  
40  	public String getDesc() {
41  		return desc;
42  	}
43  
44  	public void setDesc(String desc) {
45  		this.desc = desc;
46  	}
47  
48  	public Data.DataType getDataType() {
49  		return dataType;
50  	}
51  
52  	public void setDataType(Data.DataType dataType) {
53  		this.dataType = dataType;
54  	}
55  
56  	public String getKey() {
57  		return key;
58  	}
59  
60  	public void setKey(String key) {
61  		this.key = key;
62  	}
63  
64  	public boolean isHidden() {
65  		return hidden;
66  	}
67  
68  	public void setHidden(boolean hidden) {
69  		this.hidden = hidden;
70  	}
71  
72      public String getColumnWidth() {
73          return columnWidth;
74      }
75  
76      public void setColumnWidth(String columnWidth) {
77          this.columnWidth = columnWidth;
78      }
79  
80  }