I am using plantuml in my project. It geneartes class diagram using java code. But now i want to integrate sequence diagram. How can i generate proper plantUML text desciption from java source code? So that, i can use that plantuml text to genearte sequence diagram.
For ex:
public class Main{
public static void main(String[] args){
A o1 = new A();
o1.d();
}
}
public class A {
int t,u,v,w;
int x,y;
public void d(){
System.out.println("A.d()");
}
}
How can i generate plantUMLText from this source code for Sequence Diagram?