Coverage Report - org.wiztools.xml2spreadsheet.entity.SheetEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
SheetEntity
100% 
N/A 
0
 
 1  
 /*
 2  
  * SheetEntity.java
 3  
  *
 4  
  * Created on April 7, 2005, 5:06 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 SheetEntity {
 16  
     
 17  
     private Map<String, String> attributes;
 18  
     
 19  
     /** Creates a new instance of SheetEntity */
 20  280
     public SheetEntity() {
 21  280
     }
 22  
     
 23  
     public void setAttributes(Map<String, String> attributes){
 24  224
         this.attributes = attributes;
 25  224
     }
 26  
     
 27  
     public Map<String, String> getAttributes(){
 28  280
         return attributes;
 29  
     }
 30  
 }