Coverage Report - org.kuali.student.common.ui.client.widgets.field.layout.element.MessageKeyInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
MessageKeyInfo
0%
0/21
N/A
1
 
 1  
 package org.kuali.student.common.ui.client.widgets.field.layout.element;
 2  
 
 3  
 public class MessageKeyInfo {
 4  
         private String group;
 5  
         private String type;
 6  
         private String state;
 7  
         private String id;
 8  
         
 9  0
         public MessageKeyInfo(String id){
 10  0
                 this.id = id;
 11  0
         }
 12  
         
 13  0
         public MessageKeyInfo(String group, String type, String state, String id) {
 14  0
                 this.group = group;
 15  0
                 this.type = type;
 16  0
                 this.state = state;
 17  0
                 this.id = id;
 18  0
         }
 19  
         
 20  
         public String getGroup() {
 21  0
                 return group;
 22  
         }
 23  
         public void setGroup(String group) {
 24  0
                 this.group = group;
 25  0
         }
 26  
         public String getType() {
 27  0
                 return type;
 28  
         }
 29  
         public void setType(String type) {
 30  0
                 this.type = type;
 31  0
         }
 32  
         public String getState() {
 33  0
                 return state;
 34  
         }
 35  
         public void setState(String state) {
 36  0
                 this.state = state;
 37  0
         }
 38  
         public String getId() {
 39  0
                 return id;
 40  
         }
 41  
         public void setId(String id) {
 42  0
                 this.id = id;
 43  0
         }
 44  
         
 45  
         
 46  
 }