SimpleGraph-Excel: Difference between revisions
Jump to navigation
Jump to search
| Line 37: | Line 37: | ||
= Examples = | = Examples = | ||
== Modern == | |||
<uml> | |||
hide circle | |||
package Modern { | |||
note top of person: 4 | |||
class person { | |||
name | |||
age | |||
} | |||
note top of software: 2 | |||
class software { | |||
name | |||
lang | |||
} | |||
} | |||
person --> person: knows | |||
note on link: 2 | |||
person --> software: created | |||
note on link: 4 | |||
</uml> | |||
== Railway == | == Railway == | ||
<uml> | <uml> | ||
Revision as of 08:48, 31 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

Examples
Modern

Railway
