https://github.com/pintman/uml-ad
Informationen zu UML-Aktivitätsdiagrammen.
https://github.com/pintman/uml-ad
Last synced: 4 months ago
JSON representation
Informationen zu UML-Aktivitätsdiagrammen.
- Host: GitHub
- URL: https://github.com/pintman/uml-ad
- Owner: pintman
- Created: 2020-11-30T19:24:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-05T20:59:12.000Z (over 4 years ago)
- Last Synced: 2024-12-29T17:40:39.876Z (5 months ago)
- Homepage: https://pintman.github.io/uml-ad/
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UML-Aktivitätsdiagramme
## Notation

- Start- und Endknoten
- Aktivitäten mit abgerundete Ecken
- Verzweigungen durch Rauten
- Bedingungen/Guards in eckigen
- Klammern
- Schwarze Balken für Parallelisierung,
- treten paarweise auf.## Einfache Schleifen
```python
for i in range(3):
print(i)
```
## komplexere Schleifen
```python
for i in range(10):
if i > 5:
print(i)
else:
print(9-i)
```
## Aktivitätsdiagramme Version 2

## Tools
- [Umlet/Umletino](http://www.umletino.com/umletino.html)
- [draw.io/diagrams.net](https://app.diagrams.net/)
- [plantuml](https://plantuml.com/)
- Stift/Papier/Whiteboard## Übungen aus IHK-Prüfungen
- [Übungen](https://tbseins-my.sharepoint.com/:f:/g/personal/bakera_tbs1_de/EvgRkzwZmxRCqywrOTtyAmIBf8JFXuq3LaTmIjnjFlBDkg?e=bJ2k8F)
- (2020 Winter)
- 2016 Winter
- 2015 WinterPro Aufgabe 23,5 Minuten (in der Prüfung)
## Quellen
Abbildungen aus dem Artikel [Aktivitätsdiagramm](https://de.wikipedia.org/wiki/Aktivit%C3%A4tsdiagramm) bei Wikipedia.