PlantUML Sequence Diagrams in IntelliJ Editor

Опубликовано: 11 Апрель 2020
на канале: AMR.SMART.SYSTEMS
17,613
102

Check out details in - https://86amruth.blogspot.com/2020/04...

Sequence Diagram Drawing Tips and Tricks
Using Plant UML in IntelliJ
Activity Diagrams Tips and tricks
Draw sequence diagram quickly
Learn Sequence in 5 mins
Learn Activity Diagram in 5 mins

Intellij Installation for windows - https://www.jetbrains.com/idea/downlo...
Intellij Installation for Linux - https://www.jetbrains.com/idea/downlo...

Install this Plugin
Plant UML Plugin - https://plugins.jetbrains.com/plugin/...

Sample Example Shown-

/***************************************Sample_Example*********************************/
@startuml

title MyFirstsequnceDiagramPlantUML\n

participant "ClassA" as A
participant "ClassB" as B
participant "ClassC" as C

A-B : HelloB()
B--A : HelloA()
A--C : ExtraCalls()
B- C : HelloC()

alt CSpeaksWithBonly
C--B : HelloB_C()
end

note over A
ErrorCondtionReached
end note

@enduml

/****************************************End_Of_Sample_Example*************************/

Note - Add Angle Brackets Properly, missed above as youtube does not allow

#Java #C++ #Python #BlockDiagram #SequenceDiagram #IntelliJ #PlantUML #Programming #EasyProgramming #Education #Dummies

00:00 -Introduction of PlantUML and sequence diagram
00:59 -Install PlantUML plugin in IntelliJ
01:31 -Restart the IntelliJ editor
01:45 -Creating a new PlantUML file in IntelliJ
02:38 - Adding Participants in PlantUML
03:54 -Adding a function call or sequence
04:13 -Adding a callback functions
04:51 -Adding alt block in PlantUML
05:26 -Adding a note over participate
06:12 -Please subscribe