-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sw_concepts: replace factory example
- Draw an own stripped down variant. - Add slide with a short explanation in front.
- Loading branch information
Showing
5 changed files
with
67 additions
and
19 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@startuml | ||
|
||
package domain { | ||
|
||
interface Coin | ||
|
||
class GoldCoin implements Coin | ||
|
||
class CopperCoin implements Coin | ||
|
||
class SilverCoin implements Coin | ||
|
||
} | ||
|
||
package main { | ||
Main --> GoldCoin : creates | ||
Main --> CopperCoin : creates | ||
Main --> SilverCoin : creates | ||
} | ||
|
||
package bank { | ||
Bank --> GoldCoin : creates | ||
Bank --> CopperCoin : creates | ||
Bank --> SilverCoin : creates | ||
} | ||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@startuml | ||
|
||
package domain { | ||
|
||
interface Coin | ||
|
||
class GoldCoin implements Coin | ||
|
||
class CopperCoin implements Coin | ||
|
||
class SilverCoin implements Coin | ||
|
||
class CoinFactory | ||
|
||
CoinFactory -> SilverCoin : creates | ||
CoinFactory -> GoldCoin : creates | ||
CoinFactory -> CopperCoin : creates | ||
} | ||
|
||
package main { | ||
Main --> CoinFactory: uses | ||
} | ||
|
||
package bank { | ||
Bank --> CoinFactory: uses | ||
} | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters