facebook twitter hatena line email

VisualStudioCode/PlantUML

提供: 初心者エンジニアの簡易メモ
2023年12月6日 (水) 16:12時点におけるAdmin (トーク | 投稿記録)による版 (PlantUMLのプラグイン)

移動: 案内検索

PlantUMLのプラグイン

クラス図

class.pu

@startuml
class Enemy {
    + string type
    ~ string name
    # void SayHello()
    - void Attack()
}
@enduml

参考:https://gist.github.com/yoggy/bd68b3f1f55dbd742bea71424ca66564

クラス図関連系

relation.pu

@startuml
Cat --|> Animal : 継承
Wheel "4" --* "1" Car : コンポジション
Employee "many" --o  "1" Company : 集約
Car -- VehicleInspection : 関連
UseCase ..|> IUseCase: 実現
Runner ..> Marathon : 依存

interface IUseCase
abstract class Human
@enduml

関連

Android/開発環境/AndroidStudio/UMLクラス図 [ショートカット]