Coverage Report - org.kuali.rice.krad.uif.container.NodePrototype
 
Classes in this File Line Coverage Branch Coverage Complexity
NodePrototype
0%
0/8
N/A
1
 
 1  
 package org.kuali.rice.krad.uif.container;
 2  
 
 3  
 import org.kuali.rice.krad.uif.field.MessageField;
 4  
 
 5  
 import java.io.Serializable;
 6  
 
 7  
 public class NodePrototype implements Serializable {
 8  
     private static final long serialVersionUID = 1L;
 9  
 
 10  
     private MessageField labelPrototype;
 11  
     private Group dataGroupPrototype;
 12  
 
 13  0
     public NodePrototype() {
 14  
 
 15  0
     }
 16  
 
 17  
     /**
 18  
      * @param labelPrototype the labelPrototype to set
 19  
      */
 20  
     public void setLabelPrototype(MessageField labelPrototype) {
 21  0
         this.labelPrototype = labelPrototype;
 22  0
     }
 23  
 
 24  
     /**
 25  
      * @return the labelPrototype
 26  
      */
 27  
     public MessageField getLabelPrototype() {
 28  0
         return this.labelPrototype;
 29  
     }
 30  
 
 31  
     /**
 32  
      * @param dataGroupPrototype the dataGroupPrototype to set
 33  
      */
 34  
     public void setDataGroupPrototype(Group dataGroupPrototype) {
 35  0
         this.dataGroupPrototype = dataGroupPrototype;
 36  0
     }
 37  
 
 38  
     /**
 39  
      * @return the dataGroupPrototype
 40  
      */
 41  
     public Group getDataGroupPrototype() {
 42  0
         return this.dataGroupPrototype;
 43  
     }
 44  
 }