Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mermaid #45

Closed
wants to merge 33 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9648dca
Update control-structures.md
appenmaier Sep 4, 2023
ff30b65
Update activity-diagrams.md
appenmaier Sep 6, 2023
f2468f6
Update programming.md
appenmaier Sep 6, 2023
023580f
Update class-structure.md
appenmaier Sep 6, 2023
7b2a197
Update data-objects.md
appenmaier Sep 6, 2023
05a2e00
Update control-structures.md
appenmaier Sep 6, 2023
5c967d6
Update arrays.md
appenmaier Sep 6, 2023
84f8968
Update arrays.md
appenmaier Sep 6, 2023
97250b8
Update oo.md
appenmaier Sep 6, 2023
5228d16
Update oo.md
appenmaier Sep 6, 2023
b87670b
Update files.md
appenmaier Sep 7, 2023
3a991cc
Update files.md
appenmaier Sep 7, 2023
281eacb
Update class-structure.md
appenmaier Sep 12, 2023
8b7af78
Update programming.md
appenmaier Sep 12, 2023
ecf0684
Update data-objects.md
appenmaier Sep 12, 2023
f6562ba
Update strings.md
appenmaier Sep 12, 2023
ef49e64
Update console-applications.md
appenmaier Sep 12, 2023
8abc20b
Update control-structures.md
appenmaier Sep 12, 2023
0d8fec6
Update arrays.md
appenmaier Sep 12, 2023
5ef4f79
Update oo.md
appenmaier Sep 12, 2023
0e4ca08
Update files.md
appenmaier Sep 12, 2023
44e005a
Update interfaces.md
appenmaier Sep 14, 2023
c356fb3
Update exceptions.md
appenmaier Sep 14, 2023
d9b67e7
Update maps.md
appenmaier Sep 14, 2023
9ef9f05
Update java-stream-api.md
appenmaier Sep 14, 2023
5e0e1d1
Update class-structure.md
appenmaier Sep 15, 2023
e462d26
Update oo.md
appenmaier Sep 15, 2023
b5f31d9
Update abstract-and-final.md
appenmaier Sep 15, 2023
ea49cf1
Update java-stream-api.md
appenmaier Sep 15, 2023
c1244ae
Update tests.md
appenmaier Sep 15, 2023
f74b5a7
Update tests.md
appenmaier Sep 15, 2023
104c183
Update io-streams.md
appenmaier Sep 15, 2023
68f10db
Update programming.md
appenmaier Sep 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update class-structure.md
appenmaier authored Sep 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 281eacb1494006503bdb9b7cc29ab9bc4b6e7168
6 changes: 3 additions & 3 deletions docs/documentation/class-structure.md
Original file line number Diff line number Diff line change
@@ -131,11 +131,11 @@ Entwicklungspakete ermöglichen das hierarchische Strukturieren von Klassen. Um

```mermaid
flowchart
pA[packageA] --> pB[packageB]
pA(packageA) --> pB(packageB)
pA --> cA[ClassA]
pB --> pC[packageC]
pB --> pC(packageC)
pB --> cB[ClassB]
pB --> pD[packageD]
pB --> pD(packageD)
pC --> cC[ClassC]
pC --> cD[ClassD]
pD --> cE[ClassE]