Coverage Report - org.wiztools.xml2spreadsheet.entity.RowEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
RowEntity
40% 
N/A 
0
 
 1  
 /*
 2  
  * RowEntity.java
 3  
  *
 4  
  * Created on April 7, 2005, 5:07 PM
 5  
  */
 6  
 
 7  
 package org.wiztools.xml2spreadsheet.entity;
 8  
 
 9  
 import java.util.Map;
 10  
 
 11  
 /**
 12  
  *
 13  
  * @author subhash
 14  
  */
 15  
 public class RowEntity {
 16  
     
 17  
     private Map<String, String> attributes;
 18  
     
 19  
     /** Creates a new instance of RowEntity */
 20  36652
     public RowEntity() {
 21  36652
     }
 22  
     
 23  
     public void setAttributes(Map<String, String> attributes){
 24  0
         this.attributes = attributes;
 25  0
     }
 26  
     
 27  
     public Map<String, String> getAttributes(){
 28  0
         return attributes;
 29  
     }
 30  
 }