SimpleGraph-Excel: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 35: | Line 35: | ||
</uml> | </uml> | ||
= Example = | = Example = | ||
<uml> | |||
hide circle | |||
package Railway { | |||
class City { | |||
name | |||
lat | |||
lon | |||
} | |||
class Station { | |||
name | |||
lat | |||
lon | |||
} | |||
class Route { | |||
linenumber | |||
} | |||
class Section { | |||
id | |||
} | |||
Station "1" - "city 1" City | |||
Route "1" - "to 1" City | |||
Route "1" - "from 1" City | |||
Route "1" - "sections n" Section | |||
Station "1" - "sections n" Section | |||
} | |||
</uml> | |||
= Links = | = Links = | ||
Revision as of 16:50, 30 August 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

Example
