How to draw generalization in use case diagram

0 votes
asked Jul 28, 2022 in Question / help by Jimmy09140456 (120 points)
Hi all,

Do you know how to draw the generalization use case in use case diagram? Like the following (link to screenshort: https://imgur.com/a/K9yw8Xb)

Here is my example:

@startuml
left to right direction
skinparam packageStyle rectangle
actor Customer
actor Bank
rectangle "Banking App" {
Customer -- (Log in)
(Log in) --> (Verify Password) : <<include>>
(Log in) <-- (Display Login Error) : <<extend>>
Customer -- (Transfer Funds)
(Transfer Funds) --> (Verify Sufficient Funds) : <<include>>
(Transfer Funds) --- Bank
Customer -- (Make Payment)
(Make Payment) --> (Verify Sufficient Funds) : <<include>>
(Make Payment) -- Bank
(Make Payment) <|-l- (Pay from Savings)
(Make Payment) <|-l- (Pay from Checking)
}
@enduml

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...