Coverage Report - org.naftulin.configmgr.content.NameValuePairImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
NameValuePairImpl
71%
5/7
N/A
1
 
 1  
 package org.naftulin.configmgr.content;
 2  
 
 3  
 import java.io.Serializable;
 4  
 
 5  
 /**
 6  
  * Simple value-pair class, follows the value object pattern. 
 7  
  * 
 8  
  * @author Henry Naftulin
 9  
  * @since 1.0
 10  
  */
 11  40
 public class NameValuePairImpl implements Serializable {
 12  
         private static final long serialVersionUID = 1L;
 13  
         private String name;
 14  
         private String value;
 15  
         
 16  
         public String getName() {
 17  0
                 return name;
 18  
         }
 19  
         public void setName(final String name) {
 20  40
                 this.name = name;
 21  40
         }
 22  
         public String getValue() {
 23  0
                 return value;
 24  
         }
 25  
         public void setValue(final String value) {
 26  40
                 this.value = value;
 27  40
         }
 28  
 }