SimpleGraph-Excel: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 13: | Line 13: | ||
|viewmode=hidden | |viewmode=hidden | ||
}} | }} | ||
= Mental Model = | |||
<uml> | |||
class Workbook { | |||
name | |||
} | |||
class Sheet { | |||
name | |||
} | |||
class Row { | |||
rownumber | |||
} | |||
class Column { | |||
columnnumber | |||
value | |||
} | |||
Workbook "1" -> "n" Sheet | |||
Sheet "1" -> "title 1" Row | |||
Sheet "1" -> "n" Row | |||
Row "1" -> "n" Column | |||
</uml> | |||
= Links = | = Links = | ||
* https://stackoverflow.com/questions/tagged/poi | * https://stackoverflow.com/questions/tagged/poi | ||
Revision as of 18:23, 27 February 2018
SimpleGraphModule
SimpleGraph Excel module
The SimpleGraph Excel module makes Microsoft Excel workbooks accessible via the Apache POI API see Apache POI XSSF/HSSF.
Sources
- System: ExcelSystem.java
- JUnit-Test: TestExcelSystem.java
Mental Model
