PlantUMLでパッケージにコメントを付ける
クラス図をPlantUMLで書く際に、パッケージにコメントを付ける方法で結構手間取ったので備忘録に。
■テキストエディタ
Visual Studio Code
そもそもコメントって
class Class{
}
note bottom: コメント
なんぞやというのは上記のようにクラスにくっつけるメモのようなもののことです。
クラスの説明を書きたい時などに使えます。
bottom を right や left に変えることでメモの位置も変わります。
note bottom: コメント
note right: コメント
note left: コメント
パッケージにコメントを付ける
note "コメント" as comment
folder "Package" as Package{
}
Package .. comment
packageではなくfolderを使うことでコメントを付ける事ができます。
手順としては
①コメントを宣言
note "コメント" as comment
② folderを宣言
folder "A" as B {
}
③ folderにコメントを指定
B .. comment
といった流れかと思います。
勿論folderの中にクラスを入れることも出来ます。
note "コメント" as comment
folder "Package" as Package{
class Class{
property
method()
}
}
Package .. comment
クラスを入れると何故かレイアウトもちょっとpackageっぽくなります。
参考
Author And Source
この問題について(PlantUMLでパッケージにコメントを付ける), 我々は、より多くの情報をここで見つけました https://qiita.com/nira__10/items/4841e276249c7cb45c0c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .