본문 바로가기

Talk/Nomal

글로쓰는 UML

글로쓰는 UML... plantUML



이거 대박!!!


http://plantuml.com


이제는 글로 UML을 만들 수 있다!!!



@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
@enduml
basic UML sequence diagram


이렇게 말이지~

물론 클래스 다이어그램도...



@startuml

abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection

List <|-- AbstractList
Collection <|-- AbstractCollection

Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList

class ArrayList {
  Object[] elementData
  size()
}

enum TimeUnit {
  DAYS
  HOURS
  MINUTES
}

annotation SuppressWarnings

@enduml
enum, class and interface


그외 대부분 다이어그램도~~~


매우 멋지고 매우 재미난 프로젝트!!!



'Talk > Nomal' 카테고리의 다른 글

이게 github 이야 vscode 야  (2) 2021.09.17
특수문자 모음  (0) 2019.07.09
OpenStack summit Barcelona 발표  (0) 2016.10.21
직장인의 표정은...  (0) 2016.06.24
VirtualBox GuestAddition  (0) 2015.10.07