Thursday 21 September 2023

How to Model Extension Relationships in Object Diagrams with PlantUML

Symbol <|-- models the extension relationship in object diagram.

extension.txt

@startuml

object "Parent:Person" as parent
object "Child:Person" as child

parent <|-- child : Inherit from

@enduml

 Above snippet generate below diagram.

  


Previous                                                    Next                                                    Home

No comments:

Post a Comment