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  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 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.rice.krad.uif.container;
 17  
 
 18  
 import org.kuali.rice.krad.uif.field.MessageField;
 19  
 
 20  
 import java.io.Serializable;
 21  
 
 22  
 public class NodePrototype implements Serializable {
 23  
     private static final long serialVersionUID = 1L;
 24  
 
 25  
     private MessageField labelPrototype;
 26  
     private Group dataGroupPrototype;
 27  
 
 28  0
     public NodePrototype() {
 29  
 
 30  0
     }
 31  
 
 32  
     /**
 33  
      * @param labelPrototype the labelPrototype to set
 34  
      */
 35  
     public void setLabelPrototype(MessageField labelPrototype) {
 36  0
         this.labelPrototype = labelPrototype;
 37  0
     }
 38  
 
 39  
     /**
 40  
      * @return the labelPrototype
 41  
      */
 42  
     public MessageField getLabelPrototype() {
 43  0
         return this.labelPrototype;
 44  
     }
 45  
 
 46  
     /**
 47  
      * @param dataGroupPrototype the dataGroupPrototype to set
 48  
      */
 49  
     public void setDataGroupPrototype(Group dataGroupPrototype) {
 50  0
         this.dataGroupPrototype = dataGroupPrototype;
 51  0
     }
 52  
 
 53  
     /**
 54  
      * @return the dataGroupPrototype
 55  
      */
 56  
     public Group getDataGroupPrototype() {
 57  0
         return this.dataGroupPrototype;
 58  
     }
 59  
 }