Thursday 13 July 2023

PlantUML: How to use non letters in class name?

By putting quotes " around the class name, we can define a class name with non-letter characters.

 

nonLetterClass.txt

@startuml

class "My new class 1" as CLS1
abstract class "My new abstract class 1" as CLS2
interface "My new interface 1" as INTF1
enum "My enum 1" as ENUM1

INTF1 <|.. CLS2
CLS2 <|-- CLS1

@enduml

 

Above snippet generate below diagram.

 


 

Previous                                                    Next                                                    Home

No comments:

Post a Comment