| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| WorkBookEntity |
|
| 0.0;0 |
| 1 | /* |
|
| 2 | * WorkBookEntity.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 WorkBookEntity { |
|
| 16 | ||
| 17 | private Map<String, String> attributes; |
|
| 18 | ||
| 19 | /** Creates a new instance of WorkBookEntity */ |
|
| 20 | 84 | public WorkBookEntity() { |
| 21 | 84 | } |
| 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 | } |