#1113 Link uml-reverse-mapper created class diagrams to readme, where needed

This commit is contained in:
Ilkka Seppälä
2019-12-07 20:01:13 +02:00
parent 0685a505d3
commit b09b100614
161 changed files with 246 additions and 64 deletions

View File

@ -15,15 +15,6 @@ tags:
Layers is an architectural pattern where software responsibilities are
divided among the different layers of the application.
![alt text](./etc/layers.png "Layers")
## Applicability
Use the Layers architecture when
* you want clearly divide software responsibilities into different parts of the program
* you want to prevent a change from propagating throughout the application
* you want to make your application more maintainable and testable
## Explanation
Real world example
@ -102,6 +93,16 @@ public class CakeViewImpl implements View {
}
```
## Class diagram
![alt text](./etc/layers.png "Layers")
## Applicability
Use the Layers architecture when
* you want clearly divide software responsibilities into different parts of the program
* you want to prevent a change from propagating throughout the application
* you want to make your application more maintainable and testable
## Credits
* [Pattern Oriented Software Architecture Vol I-V](http://www.amazon.com/Pattern-Oriented-Software-Architecture-Volume-Patterns/dp/0471958697)