Add some structure. authored by Leonard Kupper's avatar Leonard Kupper
...@@ -22,6 +22,16 @@ Instead: Java Properties? ...@@ -22,6 +22,16 @@ Instead: Java Properties?
>>> >>>
Leonard Leonard
# The pipeline
Here we should describe the general workflow of our application.
# Packages
Here we can explain how we derived the TLA and packages from the previously explained pipeline.
## Configuration Parsing
### Configuration Files ### Configuration Files
The configuration files specify the printers properties and a set of formats with their format specific properties. The files are of the type '.properties' (Java Properties Format). The 'ConfigParser' component features an abstract ConfigurationParser which can be extended to support other file types. The configuration files specify the printers properties and a set of formats with their format specific properties. The files are of the type '.properties' (Java Properties Format). The 'ConfigParser' component features an abstract ConfigurationParser which can be extended to support other file types.
...@@ -69,4 +79,9 @@ In the following a table with all available properties is presented. All distanc ...@@ -69,4 +79,9 @@ In the following a table with all available properties is presented. All distanc
|| page.width | non-negative integer | Horizontal page size. | ✔ | 210 || page.width | non-negative integer | Horizontal page size. | ✔ | 210
|| page.height | non-negative integer | Vertical page size. | ✔ | 297 || page.height | non-negative integer | Vertical page size. | ✔ | 297
|| margin.[top,left,bottom,right] | non-negative integer | Desired minimum margin from respective page border. (Can have greater size in real output, because it will be a multiple of the cell size.) | ✔ | 10 || margin.[top,left,bottom,right] | non-negative integer | Desired minimum margin from respective page border. (Can have greater size in real output, because it will be a multiple of the cell size.) | ✔ | 10
|| ... | ... | ... | ... | ... | || ... | ... | ... | ... | ... |
\ No newline at end of file
## Rendering
Would be nice to explain this thing a bit here...
\ No newline at end of file