Coverage Report - org.kuali.student.common.assembly.data.LookupResultMetadata
 
Classes in this File Line Coverage Branch Coverage Complexity
LookupResultMetadata
68%
11/16
N/A
1
 
 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.common.assembly.data;
 17  
 
 18  
 import java.io.Serializable;
 19  
 
 20  60
 public class LookupResultMetadata implements Serializable {
 21  
 
 22  
         private static final long serialVersionUID = 1L;
 23  
 
 24  
         private String key;
 25  
         private String name;
 26  
         private String desc;
 27  
         private Data.DataType dataType;
 28  
         private boolean hidden;
 29  
 
 30  
         public String getName() {
 31  0
                 return name;
 32  
         }
 33  
 
 34  
         public void setName(String name) {
 35  60
                 this.name = name;
 36  60
         }
 37  
 
 38  
         public String getDesc() {
 39  0
                 return desc;
 40  
         }
 41  
 
 42  
         public void setDesc(String desc) {
 43  60
                 this.desc = desc;
 44  60
         }
 45  
 
 46  
         public Data.DataType getDataType() {
 47  0
                 return dataType;
 48  
         }
 49  
 
 50  
         public void setDataType(Data.DataType dataType) {
 51  60
                 this.dataType = dataType;
 52  60
         }
 53  
 
 54  
         public String getKey() {
 55  0
                 return key;
 56  
         }
 57  
 
 58  
         public void setKey(String key) {
 59  60
                 this.key = key;
 60  60
         }
 61  
 
 62  
         public boolean isHidden() {
 63  0
                 return hidden;
 64  
         }
 65  
 
 66  
         public void setHidden(boolean hidden) {
 67  60
                 this.hidden = hidden;
 68  60
         }
 69  
 
 70  
 }