PlantUML로 패키지에 댓글 달기

1599 단어 plantumluml
클래스도를 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 같아집니다.

참고

좋은 웹페이지 즐겨찾기