Releases: Vanco/SequencePlugin
SequenceDiagram 2.0.4
Rebuild for 203.*
SequenceDiagram 2.0.1
New SequenceDiagram support idea 2020.x
SequenceDiagram v1.3
Add Lambda Expression support.
SequenceDiagram v1.2.8
export call stack to text file #34
SequenceDiagram v1.2.7
fix#26: Dead loop when generate Wrapper Patten class. fix issue when disable smartInterface option.
SequenceDiagram V1.2.6
fix issue #22,
fixed last tab close issue.
SequenceDiagram V1.2.2
hotfix: #10 NPE when visitNewException.
SequenceDiagram V1.2.1
Hotfix NPE when try to find the implementation of interface by scan the new expression. Add bird view icon in lower right corner. change the icon set to support retina display.
SequenceDiagram V1.2
This version add new feature, Smart Interface, Which will try to find the implementation of interface, and show it in diagram. You also can choose it by yourself, when you opt-out the Smart Interface option.
The implementation class will draw with a dash link from interface. This may not a UML standard, hope it is not confusing you.
The popup menu in the diagram will help you to trailer the diagram.
SequenceDiagram V1.1 release
SequenceDiagram V1.1 release has great improvement. Now is support generate more meaningful diagram on pipeline call and call in parameter with the correct order. e.g. pipeline call
roster
.stream()
.filter(p -> p.getGender() == Person.Sex.MALE
&& p.getAge() >= 18
&& p.getAge() <= 25)
.map(p -> p.getEmailAddress())
.forEach(email -> System.out.println(email));
and call in parameter
ref.ask(new Hello(id, Optional.empty()));