| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| WorkBook |
|
| 1.0;1 |
| 1 | /* |
|
| 2 | * WorkBook.java |
|
| 3 | * |
|
| 4 | * Created on April 6, 2005, 7:54 PM |
|
| 5 | */ |
|
| 6 | ||
| 7 | package org.wiztools.xml2spreadsheet; |
|
| 8 | import java.io.IOException; |
|
| 9 | import java.io.OutputStream; |
|
| 10 | ||
| 11 | /** |
|
| 12 | * |
|
| 13 | * @author subhash |
|
| 14 | */ |
|
| 15 | public interface WorkBook { |
|
| 16 | public void write(OutputStream os) throws IOException; |
|
| 17 | } |